ICU-5882 forgot to call ucnv_close() on the converter...

X-SVN-Rev: 22523
This commit is contained in:
Eric Mader 2007-08-24 19:13:00 +00:00
parent 4d34e9654f
commit 4cc1a9181c

View File

@ -126,6 +126,8 @@ static char *extractBytes(const UnicodeString &source, const char *codepage, int
source.extract(bytes, capacity, cnv, status);
}
ucnv_close(cnv);
return bytes;
}