From: <rl...@us...> - 2006-09-09 21:58:14
|
Revision: 17211 http://svn.sourceforge.net/gaim/?rev=17211&view=rev Author: rlaager Date: 2006-09-09 14:58:04 -0700 (Sat, 09 Sep 2006) Log Message: ----------- group_search.c: In function 'qq_process_group_cmd_search_group': group_search.c:114: warning: 'i' is used uninitialized in this function Modified Paths: -------------- trunk/libgaim/protocols/qq/group_search.c Modified: trunk/libgaim/protocols/qq/group_search.c =================================================================== --- trunk/libgaim/protocols/qq/group_search.c 2006-09-09 21:32:47 UTC (rev 17210) +++ trunk/libgaim/protocols/qq/group_search.c 2006-09-09 21:58:04 UTC (rev 17211) @@ -97,7 +97,7 @@ { guint8 search_type; guint16 unknown; - gint bytes, pascal_len, i; + gint bytes, pascal_len; qq_data *qd; qq_group *group; GSList *pending_id; @@ -111,7 +111,6 @@ /* now it starts with group_info_entry */ bytes = 0; - i++; bytes += read_packet_dw(data, cursor, len, &(group->internal_group_id)); bytes += read_packet_dw(data, cursor, len, &(group->external_group_id)); bytes += read_packet_b(data, cursor, len, &(group->group_type)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |