* src/winfonts/winfnt.c (FNT_Load_Glyph): Fix bitmap width guard.

This commit is contained in:
Werner Lemberg 2013-06-27 17:21:59 +02:00
parent b8850fc1fd
commit 680c1d408f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-06-27 Werner Lemberg <wl@gnu.org>
* src/winfonts/winfnt.c (FNT_Load_Glyph): Fix bitmap width guard.
2013-06-25 Werner Lemberg <wl@gnu.org>
[cff] Add darkening limit to `darkening-parameters'.

View File

@ -1024,7 +1024,7 @@
bitmap->rows = font->header.pixel_height;
bitmap->pixel_mode = FT_PIXEL_MODE_MONO;
if ( offset + pitch * bitmap->rows >= font->header.file_size )
if ( offset + pitch * bitmap->rows > font->header.file_size )
{
FT_TRACE2(( "invalid bitmap width\n" ));
error = FT_THROW( Invalid_File_Format );