ICU-3248 Fix bogus return NULL in openFont

X-SVN-Rev: 13575
This commit is contained in:
Eric Mader 2003-11-05 00:47:46 +00:00
parent d52f4f2973
commit b5f4d64e28

View File

@ -35,5 +35,5 @@ const LEFontInstance *GDIFontMap::openFont(const char *fontName, le_int16 pointS
result = NULL;
}
return NULL;
return result;
}