Update of /cvsroot/gaim/gaim/src/protocols/yahoo
In directory usw-pr-cvs1:/tmp/cvs-serv14277/protocols/yahoo
Modified Files:
yahoo.c
Log Message:
i think i finally fixed this. i'm such a moron sometimes.
Index: yahoo.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yahoo.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- yahoo.c 2001/11/08 09:44:36 1.7
+++ yahoo.c 2001/11/10 01:30:13 1.8
@@ -419,7 +419,7 @@
split = g_strsplit(*tmp, ":", 2);
if (!split)
continue;
- if (!split[1]) {
+ if (!split[0] || !split[1]) {
g_strfreev(split);
continue;
}
|