--- a/libpurple/protocols/mxit/formcmds.c Wed May 11 05:00:06 2011 +0000 +++ b/libpurple/protocols/mxit/formcmds.c Wed May 11 05:04:43 2011 +0000 @@ -188,7 +188,6 @@ { GHashTable* hash = NULL; gchar** parts; - gchar* part; int i = 0; #ifdef MXIT_DEBUG_COMMANDS @@ -201,7 +200,7 @@ hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); /* now break part into a key & value */ - while ((part = parts[i]) != NULL) { + while (parts[i] != NULL) { char* value; value = strchr(parts[i], '='); /* find start of value */