From: Nathan W. <fac...@us...> - 2003-10-16 04:18:06
|
Update of /cvsroot/gaim/gaim/src/protocols/jabber In directory sc8-pr-cvs1:/tmp/cvs-serv29178/src/protocols/jabber Modified Files: presence.c Log Message: fix © and ® in gtkimhtml fix a potential segfault on jabber Index: presence.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/jabber/presence.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -p -r1.12 -r1.13 --- presence.c 15 Oct 2003 06:11:26 -0000 1.12 +++ presence.c 16 Oct 2003 04:17:25 -0000 1.13 @@ -154,6 +154,9 @@ void jabber_presence_parse(JabberStream jb = jabber_buddy_find(js, from, TRUE); + if(!jb) + return; + if(jb->error_msg) { g_free(jb->error_msg); jb->error_msg = NULL; |