ICU-22825 Fix memLeak during error in tznames_impl.cpp

Rewrite the TextTrieMap::put() which should delete the value
during error instead of deleting key.
Rewrite to simplified the error handling.
This commit is contained in:
Frank Tang 2024-08-02 02:35:38 -07:00 committed by Frank Yung-Fong Tang
parent 6de4472db0
commit a22dc93e3a

View file

@ -235,24 +235,18 @@ TextTrieMap::put(const char16_t *key, void *value, UErrorCode &status) {
LocalPointer<UVector> lpLazyContents(new UVector(status), status);
fLazyContents = lpLazyContents.orphan();
}
if (U_FAILURE(status)) {
if (fValueDeleter) {
fValueDeleter((void*) key);
if (U_SUCCESS(status)) {
U_ASSERT(fLazyContents != nullptr);
char16_t *s = const_cast<char16_t *>(key);
fLazyContents->addElement(s, status);
if (U_SUCCESS(status)) {
fLazyContents->addElement(value, status);
return;
}
return;
}
U_ASSERT(fLazyContents != nullptr);
char16_t *s = const_cast<char16_t *>(key);
fLazyContents->addElement(s, status);
if (U_FAILURE(status)) {
if (fValueDeleter) {
fValueDeleter((void*) key);
}
return;
if (fValueDeleter) {
fValueDeleter(value);
}
fLazyContents->addElement(value, status);
}
void