summaryrefslogtreecommitdiff
path: root/filter/source/graphicfilter
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/graphicfilter
parent93e97e83d8db7641d32391af7203806d2d26370b (diff)
fix new[]/delete mismatch
Found by asan. E.g. ooo45229-2.cgm
Diffstat (limited to 'filter/source/graphicfilter')
-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() :