From aebaa076af2d7842c4f593c488de22059631ba4f Mon Sep 17 00:00:00 2001 From: Andy Heninger Date: Wed, 24 Jul 2013 16:42:56 +0000 Subject: [PATCH] ICU-10253 Fix memory leak in plural rules. X-SVN-Rev: 33972 --- icu4c/source/i18n/plurrule.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/icu4c/source/i18n/plurrule.cpp b/icu4c/source/i18n/plurrule.cpp index 150a7c61045..5069c9a2b68 100644 --- a/icu4c/source/i18n/plurrule.cpp +++ b/icu4c/source/i18n/plurrule.cpp @@ -809,6 +809,7 @@ AndConstraint::AndConstraint(const AndConstraint& other) { } AndConstraint::~AndConstraint() { + delete rangeList; if (next!=NULL) { delete next; } -- 2.40.0