diff options
author | marha <marha@users.sourceforge.net> | 2011-09-05 10:12:41 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-09-05 10:12:41 +0200 |
commit | 6eaea4464631b5d8c1f44a46016163e351028afc (patch) | |
tree | e3bf36f2e13f265a35e6e692adb14b1205df169f /libXfont/src/fontfile/decompress.c | |
parent | 8d96b52ac5e6ec4b6a127a8324c803bcf2732c45 (diff) | |
download | vcxsrv-6eaea4464631b5d8c1f44a46016163e351028afc.tar.gz vcxsrv-6eaea4464631b5d8c1f44a46016163e351028afc.tar.bz2 vcxsrv-6eaea4464631b5d8c1f44a46016163e351028afc.zip |
libXfont-1.4.4
Diffstat (limited to 'libXfont/src/fontfile/decompress.c')
-rw-r--r-- | libXfont/src/fontfile/decompress.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libXfont/src/fontfile/decompress.c b/libXfont/src/fontfile/decompress.c index b1fc37b85..c8171dd4a 100644 --- a/libXfont/src/fontfile/decompress.c +++ b/libXfont/src/fontfile/decompress.c @@ -259,6 +259,8 @@ BufCompressedFill (BufFilePtr f) */ while ( code >= 256 ) { + if (stackp - de_stack >= STACK_SIZE - 1) + return BUFFILEEOF; *stackp++ = file->tab_suffix[code]; code = file->tab_prefix[code]; } |