# HG changeset patch # User Mark Doliner # Date 1076475660 0 # Node ID c5e3797e7dbbdd0b6fd3fe53307846d817c05911 # Parent 9790cda80d52dc7080c97f83bd2a702448f94e34 [gaim-migrate @ 8949] Fix a crash when the "use Recent Buddies group" option is enabled (can currently only be enabled from AOL). committer: Tailor Script diff -r 9790cda80d52 -r c5e3797e7dbb src/protocols/oscar/ssi.c --- a/src/protocols/oscar/ssi.c Wed Feb 11 04:06:16 2004 +0000 +++ b/src/protocols/oscar/ssi.c Wed Feb 11 05:01:00 2004 +0000 @@ -1347,7 +1347,8 @@ /* * Subtype 0x0008 - Incoming SSI add. * - * XXX - It would probably be good for the client to actually do something when it gets this. + * Sent by the server, for example, when someone is added to + * your "Recent Buddies" group. */ static int parseadd(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs) { @@ -1377,8 +1378,6 @@ if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) ret = userfunc(sess, rx); - - free(name); } return ret;