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:
Tor Lillqvist 2008-09-04 20:41:50 +00:00 committed by Tor Lillqvist
parent 4246c64c38
commit f709eda798
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-09-04 Tor Lillqvist <tml@novell.com>
* gwin32mount.c (g_win32_mount_finalize): Don't unref icon if
NULL.
2008-09-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.0 ===

View File

@ -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);