i18npool/source/breakiterator/xdictionary.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit baf8f02b009e62f44959be26ee33daeb032fae0d
Author: Caolán McNamara <caol...@redhat.com>
Date:   Wed Jun 5 17:44:09 2013 +0100

    mismatched new[]/delete
    
    Change-Id: I0bfa3c090c436c0397ead80f2759ab7335f3aa0f

diff --git a/i18npool/source/breakiterator/xdictionary.cxx 
b/i18npool/source/breakiterator/xdictionary.cxx
index 72da09f..cf22d6c 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
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to