From baf8f02b009e62f44959be26ee33daeb032fae0d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 5 Jun 2013 17:44:09 +0100 Subject: mismatched new[]/delete Change-Id: I0bfa3c090c436c0397ead80f2759ab7335f3aa0f --- i18npool/source/breakiterator/xdictionary.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'i18npool/source') diff --git a/i18npool/source/breakiterator/xdictionary.cxx b/i18npool/source/breakiterator/xdictionary.cxx index 72da09f87629..cf22d6cbd3e4 100644 --- a/i18npool/source/breakiterator/xdictionary.cxx +++ b/i18npool/source/breakiterator/xdictionary.cxx @@ -281,8 +281,8 @@ WordBreakCache& xdictionary::getCache(const sal_Unicode *text, Boundary& wordBou if (rCache.size == 0 || len > rCache.size) { if (rCache.size != 0) { - delete rCache.contents; - delete rCache.wordboundary; + delete [] rCache.contents; + delete [] rCache.wordboundary; rCache.size = len; } else -- cgit