summaryrefslogtreecommitdiffstats
path: root/filter/source
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-12-25 21:10:34 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-12-25 21:10:34 +0100
commitc31015130e72e88a5108fe8f7fa7f832ebbc06ea (patch)
tree783ddbda3362c84f1467f48cc0f521a1113247b0 /filter/source
parentsal_uInt16 to size_t (diff)
downloadcore-c31015130e72e88a5108fe8f7fa7f832ebbc06ea.tar.gz
core-c31015130e72e88a5108fe8f7fa7f832ebbc06ea.zip
fix new[]/delete mismatch
Found by asan. E.g. ooo45229-2.cgm
Diffstat (limited to 'filter/source')
-rw-r--r--filter/source/graphicfilter/icgm/bundles.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/graphicfilter/icgm/bundles.cxx b/filter/source/graphicfilter/icgm/bundles.cxx
index 17d11564e85f..e91c352bc12e 100644
--- a/filter/source/graphicfilter/icgm/bundles.cxx
+++ b/filter/source/graphicfilter/icgm/bundles.cxx
@@ -94,7 +94,7 @@ FontEntry::FontEntry() :
FontEntry::~FontEntry()
{
delete [] pFontName;
- delete pCharSetValue;
+ delete[] pCharSetValue;
}
CGMFList::CGMFList() :