From 3ae4f002cb66b82a7437564528a5f239b3528d5d Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 15 Dec 2006 20:57:41 +0000 Subject: Fix a double-free while performing print operations which could trigger a segmentation fault if malloc debugging was enabled. Reported by: dougb --- www/seamonkey2/Makefile | 1 + .../files/patch-gfx_src_ps_nsFontMetricsPS.cpp | 26 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 www/seamonkey2/files/patch-gfx_src_ps_nsFontMetricsPS.cpp (limited to 'www/seamonkey2') diff --git a/www/seamonkey2/Makefile b/www/seamonkey2/Makefile index aedaf9360cf2..889c113cf75e 100644 --- a/www/seamonkey2/Makefile +++ b/www/seamonkey2/Makefile @@ -8,6 +8,7 @@ PORTNAME= seamonkey DISTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES?= www MASTER_SITES= ${MASTER_SITE_MOZILLA_EXTENDED} MASTER_SITE_SUBDIR= seamonkey/releases/${DISTVERSION} diff --git a/www/seamonkey2/files/patch-gfx_src_ps_nsFontMetricsPS.cpp b/www/seamonkey2/files/patch-gfx_src_ps_nsFontMetricsPS.cpp new file mode 100644 index 000000000000..07014d87fa82 --- /dev/null +++ b/www/seamonkey2/files/patch-gfx_src_ps_nsFontMetricsPS.cpp @@ -0,0 +1,26 @@ +--- gfx/src/ps/nsFontMetricsPS.cpp.orig Fri Dec 15 01:42:25 2006 ++++ gfx/src/ps/nsFontMetricsPS.cpp Fri Dec 15 01:41:20 2006 +@@ -1037,8 +1037,10 @@ nsFontPSXft::Init(nsXftEntry* aEntry, + + nsFontPSXft::~nsFontPSXft() + { +- if (mEntry->mFace) ++ if (mEntry->mFace) { + FT_Done_Face(mEntry->mFace); ++ mEntry->mFace = nsnull; ++ } + + if (FT_Done_FreeType(mFreeTypeLibrary)) + return; +@@ -2327,8 +2329,10 @@ nsXftType1Generator::Init(nsXftEntry* aE + + nsXftType1Generator::~nsXftType1Generator() + { +- if (mEntry->mFace) ++ if (mEntry->mFace) { + FT_Done_Face(mEntry->mFace); ++ mEntry->mFace = nsnull; ++ } + + if (FT_Done_FreeType(mFreeTypeLibrary)) + return; -- cgit