From b5f4d64e287fc013e80bf95d7b266de89b72320b Mon Sep 17 00:00:00 2001 From: Eric Mader Date: Wed, 5 Nov 2003 00:47:46 +0000 Subject: [PATCH] ICU-3248 Fix bogus return NULL in openFont X-SVN-Rev: 13575 --- icu4c/source/samples/layout/GDIFontMap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/samples/layout/GDIFontMap.cpp b/icu4c/source/samples/layout/GDIFontMap.cpp index f39509a333..480bbe0eb8 100644 --- a/icu4c/source/samples/layout/GDIFontMap.cpp +++ b/icu4c/source/samples/layout/GDIFontMap.cpp @@ -35,5 +35,5 @@ const LEFontInstance *GDIFontMap::openFont(const char *fontName, le_int16 pointS result = NULL; } - return NULL; + return result; }