ICU-3303 add missing return to error case in getGlyphs().

X-SVN-Rev: 13308
This commit is contained in:
Eric Mader 2003-10-03 18:56:39 +00:00
parent da881aa769
commit c352190d78

View File

@ -178,6 +178,7 @@ void LayoutEngine::getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const
if (fGlyphs == NULL) {
success = LE_NO_LAYOUT_ERROR;
return;
}
LE_ARRAY_COPY(glyphs, fGlyphs, fGlyphCount);