diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-06-05 17:44:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-06-05 17:45:49 +0100 |
commit | baf8f02b009e62f44959be26ee33daeb032fae0d (patch) | |
tree | 9e3f3162c06b2184e8b4bc6346e2da0644cfc296 /i18npool | |
parent | 765a030767e2ca8cd4b6159587ccd232127b896b (diff) |
mismatched new[]/delete
Change-Id: I0bfa3c090c436c0397ead80f2759ab7335f3aa0f
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/breakiterator/xdictionary.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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 |