blob: ba20344ce77b99bb8ac641365b4bb10ef9b2ef56 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
{
|