From: <sea...@us...> - 2006-05-24 17:38:46
|
Revision: 16197 Author: seanegan Date: 2006-05-24 10:38:42 -0700 (Wed, 24 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16197&view=rev Log Message: ----------- more jabber status message escape goodness Modified Paths: -------------- trunk/src/protocols/jabber/buddy.c Modified: trunk/src/protocols/jabber/buddy.c =================================================================== --- trunk/src/protocols/jabber/buddy.c 2006-05-24 00:39:15 UTC (rev 16196) +++ trunk/src/protocols/jabber/buddy.c 2006-05-24 17:38:42 UTC (rev 16197) @@ -110,7 +110,10 @@ jbr->state = state; if(jbr->status) g_free(jbr->status); - jbr->status = g_markup_escape_text(status, -1); + if (status) + jbr->status = g_markup_escape_text(status, -1); + else + jbr->status = NULL; return jbr; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |