* src/base/ftstream.c (FT_Stream_ReadFields): Don't access stream

before the NULL check.  From Savannah patch #6681.
This commit is contained in:
Werner Lemberg 2008-11-25 05:44:41 +00:00
parent 52cd0fc8b9
commit 0a263a8b31
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-11-25 Daniel Zimmermann <netzimme@aol.com>
* src/base/ftstream.c (FT_Stream_ReadFields): Don't access stream
before the NULL check. From Savannah patch #6681.
2008-11-24 Werner Lemberg <wl@gnu.org>
Fixes from the gnuwin32 port.

View File

@ -707,12 +707,13 @@
{
FT_Error error;
FT_Bool frame_accessed = 0;
FT_Byte* cursor = stream->cursor;
FT_Byte* cursor;
if ( !fields || !stream )
return FT_Err_Invalid_Argument;
cursor = stream->cursor;
error = FT_Err_Ok;
do
{