mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-03 07:53:39 +02:00
tests: check for NULL before g_object_unref()
delayed_close_free() calls g_object_unref() on a variable that is expected to possibly contain NULL (as indicated by the fact that the NULL case is handled in my_slow_close_output_stream_close_async()). This is dead code right now (due to a bug in GDBus), which is why it isn't actually causing a failure. It should still be fixed, however. https://bugzilla.gnome.org/show_bug.cgi?id=743990
This commit is contained in:
@@ -174,7 +174,8 @@ delayed_close_free (gpointer data)
|
||||
DelayedClose *df = data;
|
||||
|
||||
g_object_unref (df->stream);
|
||||
g_object_unref (df->cancellable);
|
||||
if (df->cancellable)
|
||||
g_object_unref (df->cancellable);
|
||||
g_free (df);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user