From d2ab2a82f6e2d93e4060a8f20cf1000eb694d8ff Mon Sep 17 00:00:00 2001 From: Jonathan Kew Date: Thu, 16 Sep 2010 17:41:41 +0100 Subject: [PATCH] bug 593296 - correctly release kern table in HB shaper. r=jdaggett a=blocking2.0 --- gfx/thebes/gfxHarfBuzzShaper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/gfx/thebes/gfxHarfBuzzShaper.cpp b/gfx/thebes/gfxHarfBuzzShaper.cpp index 3e06ccdab4b..c61b86348dc 100644 --- a/gfx/thebes/gfxHarfBuzzShaper.cpp +++ b/gfx/thebes/gfxHarfBuzzShaper.cpp @@ -83,6 +83,7 @@ gfxHarfBuzzShaper::~gfxHarfBuzzShaper() { hb_blob_destroy(mCmapTable); hb_blob_destroy(mHmtxTable); + hb_blob_destroy(mKernTable); hb_face_destroy(mHBFace); }