| Index: src/pdf/SkPDFFont.cpp
|
| diff --git a/src/pdf/SkPDFFont.cpp b/src/pdf/SkPDFFont.cpp
|
| index 883682f6caa4cc9cfa9d60c67856266ec944c8e2..6f108a8c79b77e36f9038064663e8f6459290b8b 100644
|
| --- a/src/pdf/SkPDFFont.cpp
|
| +++ b/src/pdf/SkPDFFont.cpp
|
| @@ -226,7 +226,7 @@ SkStream* handleType1Stream(SkStream* srcStream, size_t* headerLen,
|
| uint8_t dataByte = 0; // To hush compiler.
|
| bool highNibble = true;
|
| for (; hexData < trailer; hexData++) {
|
| - char curNibble = hexToBin(*hexData);
|
| + int8_t curNibble = hexToBin(*hexData);
|
| if (curNibble < 0) {
|
| continue;
|
| }
|
|
|