GDBusNodeInfo: remove a spurious for loop

https://bugzilla.gnome.org/show_bug.cgi?id=679671
This commit is contained in:
Rui Matos 2012-07-10 11:38:34 +02:00
parent 6f23c33831
commit eda1735029

View File

@ -1817,11 +1817,8 @@ g_dbus_node_info_new_for_xml (const gchar *xml_data,
/* clean up */
for (n = 0; n < num_nodes; n++)
{
for (n = 0; n < num_nodes; n++)
{
g_dbus_node_info_unref (ughret[n]);
ughret[n] = NULL;
}
g_dbus_node_info_unref (ughret[n]);
ughret[n] = NULL;
}
}