summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/itdb_device.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 92ed3a2..5c0a3aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2008-05-25 Christophe Fergeau <teuf at gnome.org>
+ * src/itdb_device.c: don't insert NULL firewire IDs in the SysInfo
+ hash table
+
+2008-05-25 Christophe Fergeau <teuf at gnome.org>
+
* configure.ac: rework libxml detection
* src/Makefile.am: remove LIBXML_CFLAGS/LIBXML_LIBS since they are
no longer used
diff --git a/src/itdb_device.c b/src/itdb_device.c
index 4f3fe50..0f86c57 100644
--- a/src/itdb_device.c
+++ b/src/itdb_device.c
@@ -452,8 +452,10 @@ static void itdb_device_read_sysinfo_extended (Itdb_Device *device)
if ((device->sysinfo != NULL) && (device->sysinfo_extended != NULL)) {
const char *fwid;
fwid = itdb_sysinfo_properties_get_firewire_id (device->sysinfo_extended);
- g_hash_table_insert (device->sysinfo, g_strdup ("FirewireGuid"),
- g_strdup (fwid));
+ if (fwid != NULL) {
+ g_hash_table_insert (device->sysinfo, g_strdup ("FirewireGuid"),
+ g_strdup (fwid));
+ }
}
}