Commit 25629eff authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

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

parent aef01a24
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment