diff options
author | simonb <simonb@pkgsrc.org> | 2003-07-30 05:42:15 +0000 |
---|---|---|
committer | simonb <simonb@pkgsrc.org> | 2003-07-30 05:42:15 +0000 |
commit | 9800316630f17010bc8d2a888b30baf3a10ef669 (patch) | |
tree | d3fcb1cd741bddf8219d658999e8b16058d79e8f | |
parent | 6717c136c80cf3ee2206154d9630e5a52a3c2afe (diff) | |
download | pkgsrc-9800316630f17010bc8d2a888b30baf3a10ef669.tar.gz |
Bring back the original patch-aa that was lost with the 3.6 update:
Fix a memory leak (patch sent to and accepted by the ctwm folks).
-rw-r--r-- | wm/ctwm/distinfo | 3 | ||||
-rw-r--r-- | wm/ctwm/patches/patch-ad | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/wm/ctwm/distinfo b/wm/ctwm/distinfo index e6012f70cf3..180e18d8fef 100644 --- a/wm/ctwm/distinfo +++ b/wm/ctwm/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2003/06/10 07:40:52 wiz Exp $ +$NetBSD: distinfo,v 1.6 2003/07/30 05:42:15 simonb Exp $ SHA1 (ctwm-3.6.tar.gz) = 8a8cefd2273c748fd7ceded4c3553e5ca7a994ec Size (ctwm-3.6.tar.gz) = 370563 bytes @@ -7,3 +7,4 @@ Size (ctwm-3.6-xpm.tar.gz) = 246505 bytes SHA1 (patch-aa) = 4b86b9d19e89b4b53415356c9ee9d4d21a0dd038 SHA1 (patch-ab) = e03e595241ae1e1bc412772c6805ee115aad80d0 SHA1 (patch-ac) = 99a28b20904207693a4f25aafaaac447dbcdca95 +SHA1 (patch-ad) = d455a80205f07baf3789a5e8b2506e5c42429b85 diff --git a/wm/ctwm/patches/patch-ad b/wm/ctwm/patches/patch-ad new file mode 100644 index 00000000000..bbb95780e26 --- /dev/null +++ b/wm/ctwm/patches/patch-ad @@ -0,0 +1,12 @@ +$NetBSD: patch-ad,v 1.1 2003/07/30 05:42:15 simonb Exp $ + +--- util.c.orig Wed Dec 12 02:38:52 2001 ++++ util.c +@@ -3959,6 +3959,7 @@ Atom prop; + ProgramName, XGetAtomName(dpy, prop), w); + stringptr = NULL; + } ++ XFree (text_prop.value); + } else { + stringptr = NULL; + } |