diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-04-24 15:23:04 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-04-24 15:23:04 +0800 |
commit | 1c88c358ab1f7b5ede27f7e5ba1e9028f4c33c54 (patch) | |
tree | c31b6081cb2e8d4e9bfb59c39aaf7d5278c80785 | |
parent | d619c3ad180db8416e4580301fdb894f6bee764a (diff) | |
download | marcuscom-ports-1c88c358ab1f7b5ede27f7e5ba1e9028f4c33c54.tar marcuscom-ports-1c88c358ab1f7b5ede27f7e5ba1e9028f4c33c54.tar.gz marcuscom-ports-1c88c358ab1f7b5ede27f7e5ba1e9028f4c33c54.tar.bz2 marcuscom-ports-1c88c358ab1f7b5ede27f7e5ba1e9028f4c33c54.tar.lz marcuscom-ports-1c88c358ab1f7b5ede27f7e5ba1e9028f4c33c54.tar.xz marcuscom-ports-1c88c358ab1f7b5ede27f7e5ba1e9028f4c33c54.tar.zst marcuscom-ports-1c88c358ab1f7b5ede27f7e5ba1e9028f4c33c54.zip |
Fix a memory corruption bug that could lead to crashes with the right malloc
flags.
Obtained from: gconf-editor CVS
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6124 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | sysutils/gconf-editor/Makefile | 3 | ||||
-rw-r--r-- | sysutils/gconf-editor/files/patch-src_gconf-editor-window.c | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/sysutils/gconf-editor/Makefile b/sysutils/gconf-editor/Makefile index 056c83cb3..b81a6cbff 100644 --- a/sysutils/gconf-editor/Makefile +++ b/sysutils/gconf-editor/Makefile @@ -3,11 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/sysutils/gconf-editor/Makefile,v 1.48 2006/03/13 19:31:43 mezz Exp $ +# $MCom: ports/sysutils/gconf-editor/Makefile,v 1.49 2006/04/13 07:52:37 bland Exp $ # PORTNAME= gconf-editor PORTVERSION= 2.14.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= sysutils gnome MASTER_SITES= ${MASTER_SITE_GNOME} diff --git a/sysutils/gconf-editor/files/patch-src_gconf-editor-window.c b/sysutils/gconf-editor/files/patch-src_gconf-editor-window.c new file mode 100644 index 000000000..7ff0eb544 --- /dev/null +++ b/sysutils/gconf-editor/files/patch-src_gconf-editor-window.c @@ -0,0 +1,11 @@ +--- src/gconf-editor-window.c.orig Mon Apr 24 03:19:49 2006 ++++ src/gconf-editor-window.c Mon Apr 24 03:20:00 2006 +@@ -950,7 +950,7 @@ gconf_editor_gconf_value_changed (GConfC + gconf_add_recent_key (window, key); + } + +- g_free (value); ++ gconf_value_free (value); + g_free (key); + gtk_tree_path_free (path); + } |