ICU-2307 initialize fields to NULL in case we bail early

X-SVN-Rev: 9868
This commit is contained in:
Steven R. Loomis 2002-09-17 18:50:35 +00:00
parent 150ad44972
commit feb85480d2

View File

@ -21,6 +21,7 @@ const char BreakDictionary::fgClassID=0;
//=================================================================================
BreakDictionary::BreakDictionary(const char* /*dictionaryFilename*/, UErrorCode& status)
: rowIndex(NULL), table(NULL), columnMap(NULL), rowIndexFlags(NULL), rowIndexFlagsIndex(NULL), rowIndexShifts(NULL)
{
if (U_FAILURE(status)) return;