mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-770 Fix a memory initialization problem.
X-SVN-Rev: 5911
This commit is contained in:
parent
f33d85e67c
commit
6b1074b8ad
1 changed files with 9 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue