bytesicon: don't use g_object_unref() on GBytes

We need to use g_bytes_unref()

https://bugzilla.gnome.org/show_bug.cgi?id=699001
This commit is contained in:
Cosimo Cecchi 2013-04-26 17:11:02 -04:00
parent 463022cc09
commit 706e636ab8

View File

@ -110,7 +110,7 @@ g_bytes_icon_finalize (GObject *object)
icon = G_BYTES_ICON (object);
g_object_unref (icon->bytes);
g_bytes_unref (icon->bytes);
G_OBJECT_CLASS (g_bytes_icon_parent_class)->finalize (object);
}