ICU-22817 Use LocalArray to fix memory leak

This commit is contained in:
Frank Tang 2025-03-17 22:17:27 -07:00 committed by Frank Yung-Fong Tang
parent 72406ed78a
commit ba0f39b592

View file

@ -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;