cff: use correct size for buffer

Bug 51443
This commit is contained in:
Adrian Johnson 2012-07-05 21:59:33 +09:30
parent 77106a038b
commit 49c8e1b674

View file

@ -302,7 +302,7 @@ decode_real (unsigned char *p, double *real)
char buffer2[200];
char *q;
char *buf = buffer;
char *buf_end = buffer + sizeof (buf);
char *buf_end = buffer + sizeof (buffer);
locale_data = localeconv ();
decimal_point = locale_data->decimal_point;