summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorChris D. Faulhaber <jedgar@FreeBSD.org>2000-11-15 00:22:24 +0000
committerChris D. Faulhaber <jedgar@FreeBSD.org>2000-11-15 00:22:24 +0000
commit8d47665cbd434892a1b7bde102740332c5df45a3 (patch)
treecd6ab92eeb4a8f23d3d57825a412afa2e576bbe9 /net
parentUpdate port to 0.0.9 (diff)
- Fix buffer overflow when parsing HTML tags.
- Bump PORTREVISION Approved by: Maintainer Obtained from: Stan Bubrouski <stan@CCS.NEU.EDU> (via Bugtraq)
Notes
Notes: svn path=/head/; revision=35153
Diffstat (limited to 'net')
-rw-r--r--net/gaim-snapshot/Makefile1
-rw-r--r--net/gaim-snapshot/files/patch-ad19
-rw-r--r--net/gaim/Makefile1
-rw-r--r--net/gaim/files/patch-ad19
4 files changed, 40 insertions, 0 deletions
diff --git a/net/gaim-snapshot/Makefile b/net/gaim-snapshot/Makefile
index 62a68afd6baf..033d7f3fb05b 100644
--- a/net/gaim-snapshot/Makefile
+++ b/net/gaim-snapshot/Makefile
@@ -7,6 +7,7 @@
PORTNAME= gaim
PORTVERSION= 0.10.3
+PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= ftp://ftp.marko.net/pub/gaim/ \
${MASTER_SITE_SOURCEFORGE}
diff --git a/net/gaim-snapshot/files/patch-ad b/net/gaim-snapshot/files/patch-ad
new file mode 100644
index 000000000000..ba20344ce77b
--- /dev/null
+++ b/net/gaim-snapshot/files/patch-ad
@@ -0,0 +1,19 @@
+--- src/gtkhtml.c.orig Mon Oct 9 13:34:59 2000
++++ src/gtkhtml.c Tue Nov 14 17:28:27 2000
+@@ -3251,7 +3251,7 @@
+ GdkFont *cfont;
+ GdkRectangle area;
+ char *ws,
+- tag[BUF_LONG],
++ *tag,
+ *c,
+ *url = NULL;
+ gint intag = 0,
+@@ -3295,6 +3295,7 @@
+ c = text;
+
+ ws = g_malloc(strlen(text) + 2);
++ tag = g_malloc(strlen(text) + 2);
+
+ while (*c)
+ {
diff --git a/net/gaim/Makefile b/net/gaim/Makefile
index 62a68afd6baf..033d7f3fb05b 100644
--- a/net/gaim/Makefile
+++ b/net/gaim/Makefile
@@ -7,6 +7,7 @@
PORTNAME= gaim
PORTVERSION= 0.10.3
+PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= ftp://ftp.marko.net/pub/gaim/ \
${MASTER_SITE_SOURCEFORGE}
diff --git a/net/gaim/files/patch-ad b/net/gaim/files/patch-ad
new file mode 100644
index 000000000000..ba20344ce77b
--- /dev/null
+++ b/net/gaim/files/patch-ad
@@ -0,0 +1,19 @@
+--- src/gtkhtml.c.orig Mon Oct 9 13:34:59 2000
++++ src/gtkhtml.c Tue Nov 14 17:28:27 2000
+@@ -3251,7 +3251,7 @@
+ GdkFont *cfont;
+ GdkRectangle area;
+ char *ws,
+- tag[BUF_LONG],
++ *tag,
+ *c,
+ *url = NULL;
+ gint intag = 0,
+@@ -3295,6 +3295,7 @@
+ c = text;
+
+ ws = g_malloc(strlen(text) + 2);
++ tag = g_malloc(strlen(text) + 2);
+
+ while (*c)
+ {