Fix: Native crash when an empty attribute is written. DO NOT MERGE
Bug: 10964805 Change-Id: I862a6b920a7a09eac4e012bfe75f087b2d7b4fe6main
parent
e26b750805
commit
3cc0a1d2e0
|
@ -139,6 +139,9 @@ const char *const HeaderReadWriteUtils::REQUIRES_FRENCH_LIGATURE_PROCESSING_KEY
|
|||
int *const writingPos) {
|
||||
for (AttributeMap::const_iterator it = headerAttributes->begin();
|
||||
it != headerAttributes->end(); ++it) {
|
||||
if (it->first.empty() || it->second.empty()) {
|
||||
continue;
|
||||
}
|
||||
// Write a key.
|
||||
if (!buffer->writeCodePointsAndAdvancePosition(&(it->first.at(0)), it->first.size(),
|
||||
true /* writesTerminator */, writingPos)) {
|
||||
|
|
Loading…
Reference in New Issue