From ab29e09dac547c501892cac8cd64721c3f157f00 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Wed, 20 May 2009 14:46:51 +0200 Subject: [PATCH] Don't dereference identifier_type if it is NULL (#579558) --- gio/gunixvolume.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gio/gunixvolume.c b/gio/gunixvolume.c index 16e7067..91cb346 100644 --- a/gio/gunixvolume.c +++ b/gio/gunixvolume.c @@ -487,7 +487,8 @@ g_unix_volume_get_identifier (GVolume *volume, { GUnixVolume *unix_volume = G_UNIX_VOLUME (volume); - if (strcmp (kind, unix_volume->identifier_type) == 0) + if (unix_volume->identifier_type != NULL && + strcmp (kind, unix_volume->identifier_type) == 0) return g_strdup (unix_volume->identifier); return NULL; } -- 2.7.4