wineps.drv: Don't return an error for empty glyphs.

This commit is contained in:
Huw Davies 2010-06-18 11:50:52 +01:00 committed by Alexandre Julliard
parent aef01a24d4
commit 25629eff96
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ static BOOL append_glyph_outline(HDC hdc, DWORD index, glyph_outline *outline)
SHORT num_conts;
glyph_data = get_glyph_data(hdc, index);
if(!glyph_data) return FALSE;
if(!glyph_data) return TRUE;
num_conts = get_be_word(glyph_data);