diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2006-05-04 05:51:00 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2006-05-04 05:51:00 +0000 |
commit | 261f0c4e6eaa344f263d510abfccfa2bfa6c7412 (patch) | |
tree | 692be4f50236c61faccde098ba56df4159a22cef /irc | |
parent | 01ac113f151420fdb3d6a7e2d98002e00cdf9443 (diff) |
Add patch to fix coredump on 7-current.
Submitted by: andrei at tyenet.com
Notes
Notes:
svn path=/head/; revision=161316
Diffstat (limited to 'irc')
-rw-r--r-- | irc/irssi/Makefile | 2 | ||||
-rw-r--r-- | irc/irssi/files/patch-src_irc_dcc_dcc.c | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/irc/irssi/Makefile b/irc/irssi/Makefile index 6ff173f4a66b..6646e46edc9a 100644 --- a/irc/irssi/Makefile +++ b/irc/irssi/Makefile @@ -7,7 +7,7 @@ PORTNAME= irssi PORTVERSION= 0.8.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= irc MASTER_SITES= http://mirror.irssi.org/ diff --git a/irc/irssi/files/patch-src_irc_dcc_dcc.c b/irc/irssi/files/patch-src_irc_dcc_dcc.c new file mode 100644 index 000000000000..fa53da9b176a --- /dev/null +++ b/irc/irssi/files/patch-src_irc_dcc_dcc.c @@ -0,0 +1,12 @@ +--- src/irc/dcc/dcc.c.orig Fri Dec 9 01:32:48 2005 ++++ src/irc/dcc/dcc.c Thu May 4 13:39:02 2006 +@@ -58,8 +58,8 @@ + + pos = gslist_find_string(dcc_types, type); + if (pos != NULL) { +- dcc_types = g_slist_remove(dcc_types, pos->data); + g_free(pos->data); ++ dcc_types = g_slist_remove(dcc_types, pos->data); + } + } + |