mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Add error logging on invalid cmap - DO NOT MERGE
am: ac3b9bc4ea * commit 'ac3b9bc4ea57584b6b98307dc505567beaeedab1': Add error logging on invalid cmap - DO NOT MERGE
This commit is contained in:
commit
055b8c8cda
@ -19,6 +19,9 @@
|
||||
#define LOG_TAG "Minikin"
|
||||
#include <cutils/log.h>
|
||||
|
||||
#define LOG_TAG "Minikin"
|
||||
#include <cutils/log.h>
|
||||
|
||||
#include <vector>
|
||||
using std::vector;
|
||||
|
||||
@ -67,6 +70,7 @@ static bool getCoverageFormat4(vector<uint32_t>& coverage, const uint8_t* data,
|
||||
uint32_t start = readU16(data, kHeaderSize + 2 * (segCount + i));
|
||||
if (end < start) {
|
||||
// invalid segment range: size must be positive
|
||||
android_errorWriteLog(0x534e4554, "26413177");
|
||||
return false;
|
||||
}
|
||||
uint32_t rangeOffset = readU16(data, kHeaderSize + 2 * (3 * segCount + i));
|
||||
@ -113,6 +117,7 @@ static bool getCoverageFormat12(vector<uint32_t>& coverage, const uint8_t* data,
|
||||
}
|
||||
uint32_t nGroups = readU32(data, kNGroupsOffset);
|
||||
if (nGroups >= kMaxNGroups || kFirstGroupOffset + nGroups * kGroupSize > size) {
|
||||
android_errorWriteLog(0x534e4554, "25645298");
|
||||
return false;
|
||||
}
|
||||
for (uint32_t i = 0; i < nGroups; i++) {
|
||||
@ -121,6 +126,7 @@ static bool getCoverageFormat12(vector<uint32_t>& coverage, const uint8_t* data,
|
||||
uint32_t end = readU32(data, groupOffset + kEndCharCodeOffset);
|
||||
if (end < start) {
|
||||
// invalid group range: size must be positive
|
||||
android_errorWriteLog(0x534e4554, "26413177");
|
||||
return false;
|
||||
}
|
||||
addRange(coverage, start, end + 1); // file is inclusive, vector is exclusive
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user