mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-23 10:27:51 +02:00
Don't unref icon if NULL.
2008-09-04 Tor Lillqvist <tml@novell.com> * gwin32mount.c (g_win32_mount_finalize): Don't unref icon if NULL. svn path=/trunk/; revision=7439
This commit is contained in:
committed by
Tor Lillqvist
parent
4246c64c38
commit
f709eda798
@@ -80,7 +80,10 @@ g_win32_mount_finalize (GObject *object)
|
||||
_g_win32_volume_unset_mount (mount->volume, mount);
|
||||
#endif
|
||||
/* TODO: g_warn_if_fail (volume->volume == NULL); */
|
||||
g_object_unref (mount->icon);
|
||||
|
||||
if (mount->icon != NULL)
|
||||
g_object_unref (mount->icon);
|
||||
|
||||
g_free (mount->name);
|
||||
g_free (mount->mount_path);
|
||||
|
||||
|
Reference in New Issue
Block a user