mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-19 23:28:54 +02:00
GDBusNodeInfo: remove a spurious for loop
https://bugzilla.gnome.org/show_bug.cgi?id=679671
This commit is contained in:
@@ -1817,11 +1817,8 @@ g_dbus_node_info_new_for_xml (const gchar *xml_data,
|
|||||||
/* clean up */
|
/* clean up */
|
||||||
for (n = 0; n < num_nodes; n++)
|
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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user