Remove dead assignments at gatchat

This commit is contained in:
Gustavo F. Padovan 2010-02-02 20:08:30 -02:00 committed by Denis Kenzior
parent 0a28c46bf7
commit ed4cf758b7
1 changed files with 0 additions and 6 deletions

View File

@ -312,7 +312,6 @@ static gboolean g_at_chat_match_notify(GAtChat *chat, char *line)
{
GHashTableIter iter;
struct at_notify *notify;
char *prefix;
gpointer key, value;
gboolean ret = FALSE;
GAtResult result;
@ -322,7 +321,6 @@ static gboolean g_at_chat_match_notify(GAtChat *chat, char *line)
result.final_or_pdu = 0;
while (g_hash_table_iter_next(&iter, &key, &value)) {
prefix = key;
notify = value;
if (!g_str_has_prefix(line, key))
@ -1259,7 +1257,6 @@ gboolean g_at_chat_unregister(GAtChat *chat, guint id)
{
GHashTableIter iter;
struct at_notify *notify;
char *prefix;
gpointer key, value;
GSList *l;
@ -1269,7 +1266,6 @@ gboolean g_at_chat_unregister(GAtChat *chat, guint id)
g_hash_table_iter_init(&iter, chat->notify_list);
while (g_hash_table_iter_next(&iter, &key, &value)) {
prefix = key;
notify = value;
l = g_slist_find_custom(notify->nodes, GUINT_TO_POINTER(id),
@ -1294,7 +1290,6 @@ gboolean g_at_chat_unregister_all(GAtChat *chat)
{
GHashTableIter iter;
struct at_notify *notify;
char *prefix;
gpointer key, value;
GSList *l;
@ -1304,7 +1299,6 @@ gboolean g_at_chat_unregister_all(GAtChat *chat)
g_hash_table_iter_init(&iter, chat->notify_list);
while (g_hash_table_iter_next(&iter, &key, &value)) {
prefix = key;
notify = value;
for (l = notify->nodes; l; l = l->next)