* Fix a memory leak in ~FTExtrudeGlyph: only one of the three display lists was being freed.
diff --git a/src/FTGlyph/FTExtrudeGlyph.cpp b/src/FTGlyph/FTExtrudeGlyph.cpp
index 3929213..563d30d 100644
--- a/src/FTGlyph/FTExtrudeGlyph.cpp
+++ b/src/FTGlyph/FTExtrudeGlyph.cpp
@@ -117,7 +117,7 @@ FTExtrudeGlyphImpl::~FTExtrudeGlyphImpl()
{
if(glList)
{
- glDeleteLists(glList, 1);
+ glDeleteLists(glList, 3);
}
else if(vectoriser)
{