mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
ICU-22817 Use LocalArray to fix memory leak
This commit is contained in:
parent
72406ed78a
commit
ba0f39b592
1 changed files with 3 additions and 3 deletions
|
@ -834,13 +834,13 @@ MFDataModel::MFDataModel(const MFDataModel& other) : body(Pattern()) {
|
|||
const Variant* otherVariants = other.getVariantsInternal();
|
||||
int32_t numSelectors = other.numSelectors();
|
||||
int32_t numVariants = other.numVariants();
|
||||
VariableName* copiedSelectors = copyArray(otherSelectors, numSelectors, localErrorCode);
|
||||
Variant* copiedVariants = copyArray(otherVariants, numVariants, localErrorCode);
|
||||
LocalArray<VariableName> copiedSelectors(copyArray(otherSelectors, numSelectors, localErrorCode), localErrorCode);
|
||||
LocalArray<Variant> copiedVariants(copyArray(otherVariants, numVariants, localErrorCode), localErrorCode);
|
||||
if (U_FAILURE(localErrorCode)) {
|
||||
bogus = true;
|
||||
return;
|
||||
}
|
||||
body = Matcher(copiedSelectors, numSelectors, copiedVariants, numVariants);
|
||||
body = Matcher(copiedSelectors.orphan(), numSelectors, copiedVariants.orphan(), numVariants);
|
||||
}
|
||||
|
||||
bindingsLen = other.bindingsLen;
|
||||
|
|
Loading…
Add table
Reference in a new issue