From: <the...@us...> - 2006-09-03 23:30:12
|
Revision: 17147 http://svn.sourceforge.net/gaim/?rev=17147&view=rev Author: thekingant Date: 2006-09-03 16:30:06 -0700 (Sun, 03 Sep 2006) Log Message: ----------- Get rid of an assertion failure. As far as I can tell there is no benefit to calling got_sessionreq() if context is NULL Modified Paths: -------------- trunk/libgaim/protocols/msn/slp.c Modified: trunk/libgaim/protocols/msn/slp.c =================================================================== --- trunk/libgaim/protocols/msn/slp.c 2006-09-03 21:42:52 UTC (rev 17146) +++ trunk/libgaim/protocols/msn/slp.c 2006-09-03 23:30:06 UTC (rev 17147) @@ -422,7 +422,8 @@ context = get_token(content, "Context: ", "\r\n"); - got_sessionreq(slpcall, branch, euf_guid, context); + if (context != NULL) + got_sessionreq(slpcall, branch, euf_guid, context); g_free(context); g_free(euf_guid); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |