Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv13470/src
Modified Files:
perl.c
Log Message:
Forgot to change it here.
Index: perl.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/perl.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- perl.c 12 Mar 2002 17:21:42 -0000 1.69
+++ perl.c 25 Apr 2002 05:41:27 -0000 1.70
@@ -717,7 +717,7 @@
char *t3, *t4;
t3 = g_strdup(escape_quotes(arg3));
t4 = arg4 ? g_strdup(escape_quotes(arg4)) : g_malloc0(1);
- buf = g_strdup_printf("'%lu','%d','%s','%s'", (unsigned long)arg1, (int)arg2, t3, t4);
+ buf = g_strdup_printf("'%lu','%d','%s','%s'", (unsigned long)arg1, (int)arg2, *t3, *t4);
g_free(t3);
g_free(t4);
}
|