*/*: s/Invalid_Argument/Invalid_Stream_Handle/ where appropriate.

This commit is contained in:
Werner Lemberg 2014-11-25 11:26:14 +01:00
parent f4f9e68800
commit 0d4aa23e7c
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-11-25 Werner Lemberg <wl@gnu.org>
*/*: s/Invalid_Argument/Invalid_Stream_Handle/ where appropriate.
2014-11-25 Werner Lemberg <wl@gnu.org>
*/*: s/Invalid_Argument/Invalid_Library_Handle/ where appropriate.

View File

@ -728,9 +728,12 @@
FT_Byte* cursor;
if ( !fields || !stream )
if ( !fields )
return FT_THROW( Invalid_Argument );
if ( !stream )
return FT_THROW( Invalid_Stream_Handle );
cursor = stream->cursor;
error = FT_Err_Ok;