mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-27 04:20:25 +01:00
cff: use correct size for buffer
Bug 51443
This commit is contained in:
parent
77106a038b
commit
49c8e1b674
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue