mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-10-02 03:46:39 +02:00
GDBusNodeInfo: remove a spurious for loop
https://bugzilla.gnome.org/show_bug.cgi?id=679671
This commit is contained in:
committed by
Matthias Clasen
parent
f0fe7d5ec9
commit
aa6239d999
@@ -1815,15 +1815,12 @@ g_dbus_node_info_new_for_xml (const gchar *xml_data,
|
||||
num_nodes);
|
||||
|
||||
/* 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ret = ughret[0];
|
||||
g_free (ughret);
|
||||
|
Reference in New Issue
Block a user