mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-08-29 15:22:06 +02:00
Save work.
This commit is contained in:
@@ -1466,8 +1466,8 @@ pdfioFileCreateFontObjFromFile(
|
||||
else
|
||||
{
|
||||
// Map to specified glyph...
|
||||
*bufptr++ = (unsigned char)((cmap[i] + 1) >> 8);
|
||||
*bufptr++ = (unsigned char)((cmap[i] + 1) & 255);
|
||||
*bufptr++ = (unsigned char)(cmap[i] >> 8);
|
||||
*bufptr++ = (unsigned char)(cmap[i] & 255);
|
||||
}
|
||||
|
||||
if (bufptr >= bufend)
|
||||
|
Reference in New Issue
Block a user