# HG changeset patch # User Mark Doliner # Date 1157326206 0 # Node ID aa4e9beab4de1a271289ab699ed267a5bcb93747 # Parent 3ac156db9cb6194cd1f1515fc6856c6d0e3b797f [gaim-migrate @ 17147] Get rid of an assertion failure. As far as I can tell there is no benefit to calling got_sessionreq() if context is NULL committer: Tailor Script diff -r 3ac156db9cb6 -r aa4e9beab4de libgaim/protocols/msn/slp.c --- a/libgaim/protocols/msn/slp.c Sun Sep 03 21:42:52 2006 +0000 +++ b/libgaim/protocols/msn/slp.c Sun Sep 03 23:30:06 2006 +0000 @@ -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);