Module: wine Branch: master Commit: 25629eff96b62f7f38033cab1100fb8d1ed2f7e6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=25629eff96b62f7f38033cab11...
Author: Huw Davies huw@codeweavers.com Date: Fri Jun 18 11:50:52 2010 +0100
wineps.drv: Don't return an error for empty glyphs.
---
dlls/wineps.drv/type1.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wineps.drv/type1.c b/dlls/wineps.drv/type1.c index bc33ef6..dbd2336 100644 --- a/dlls/wineps.drv/type1.c +++ b/dlls/wineps.drv/type1.c @@ -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);