comparison libgaim/protocols/qq/group_network.c @ 14656:d1a76ccb93c4

[gaim-migrate @ 17402] leak-be-gone committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Sat, 30 Sep 2006 00:14:00 +0000
parents 6b8bc59414f0
children c039c920e11c
comparison
equal deleted inserted replaced
14655:4764c501fdb9 14656:d1a76ccb93c4
92 } 92 }
93 93
94 /* default process, dump only */ 94 /* default process, dump only */
95 static void _qq_process_group_cmd_reply_default(guint8 *data, guint8 **cursor, gint len, GaimConnection *gc) 95 static void _qq_process_group_cmd_reply_default(guint8 *data, guint8 **cursor, gint len, GaimConnection *gc)
96 { 96 {
97 gchar *hex_dump;
97 g_return_if_fail(data != NULL && len > 0); 98 g_return_if_fail(data != NULL && len > 0);
98 gaim_debug(GAIM_DEBUG_INFO, "QQ", "Dump unprocessed group cmd reply:\n%s", hex_dump_to_str(data, len)); 99
100 hex_dump = hex_dump_to_str(data, len);
101 gaim_debug(GAIM_DEBUG_INFO, "QQ", "Dump unprocessed group cmd reply:\n%s", hex_dump);
102 g_free(hex_dump);
99 } 103 }
100 104
101 /* The lower layer command of send group cmd */ 105 /* The lower layer command of send group cmd */
102 void qq_send_group_cmd(GaimConnection *gc, qq_group *group, guint8 *raw_data, gint data_len) 106 void qq_send_group_cmd(GaimConnection *gc, qq_group *group, guint8 *raw_data, gint data_len)
103 { 107 {