ICU-770 Fix a memory initialization problem.

X-SVN-Rev: 5911
This commit is contained in:
George Rhoten 2001-09-25 01:24:52 +00:00
parent f33d85e67c
commit 6b1074b8ad

View file

@ -348,7 +348,9 @@ ResourceBundle ResourceBundle::getNext(UErrorCode& status) {
ures_setIsStackObject(&r, TRUE);
ures_getNextResource(resource, &r, &status);
ResourceBundle res(&r, status);
ures_close(&r);
if (U_SUCCESS(status)) {
ures_close(&r);
}
return res;
}
@ -370,7 +372,9 @@ ResourceBundle ResourceBundle::get(int32_t indexR, UErrorCode& status) const {
ures_setIsStackObject(&r, TRUE);
ures_getByIndex(resource, indexR, &r, &status);
ResourceBundle res(&r, status);
ures_close(&r);
if (U_SUCCESS(status)) {
ures_close(&r);
}
return res;
}
@ -386,7 +390,9 @@ ResourceBundle ResourceBundle::get(const char* key, UErrorCode& status) const {
ures_setIsStackObject(&r, TRUE);
ures_getByKey(resource, key, &r, &status);
ResourceBundle res(&r, status);
ures_close(&r);
if (U_SUCCESS(status)) {
ures_close(&r);
}
return res;
}