From 6c456ea93b602a593ee3d17ad4567d98752e5493 Mon Sep 17 00:00:00 2001 From: Bill Meltsner Date: Wed, 25 Aug 2010 17:54:19 -0500 Subject: [PATCH] fixed scalar vs. vector delete issue in GlyphData::pad --- src/modules/font/GlyphData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/font/GlyphData.cpp b/src/modules/font/GlyphData.cpp index 91c054521..8ddb137df 100644 --- a/src/modules/font/GlyphData.cpp +++ b/src/modules/font/GlyphData.cpp @@ -43,7 +43,7 @@ namespace font GlyphData::~GlyphData() { - delete[] data; + delete data; } void * GlyphData::getData() const