diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-08-30 15:29:34 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-08-30 15:29:34 -0400 |
commit | c0553de90eb81bbfa300955504ea0d0b84795018 (patch) | |
tree | 5fe0225420bc7297d201728e880c190ed7fb5660 /src/udev-mgr.c | |
parent | 455e7e483041b4641522a477ba00ca720b3a519c (diff) | |
parent | 6ee7c05f5d8f4397c3111fe94ab7c742478b737e (diff) | |
download | ayatana-indicator-session-c0553de90eb81bbfa300955504ea0d0b84795018.tar.gz ayatana-indicator-session-c0553de90eb81bbfa300955504ea0d0b84795018.tar.bz2 ayatana-indicator-session-c0553de90eb81bbfa300955504ea0d0b84795018.zip |
Import upstream version 0.3.4
Diffstat (limited to 'src/udev-mgr.c')
-rw-r--r-- | src/udev-mgr.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/udev-mgr.c b/src/udev-mgr.c index edc2262..5f197d6 100644 --- a/src/udev-mgr.c +++ b/src/udev-mgr.c @@ -226,7 +226,11 @@ udev_mgr_handle_webcam (UdevMgr* self, vendor = g_udev_device_get_property (device, "ID_VENDOR_ID"); product = g_udev_device_get_property (device, "ID_MODEL_ID"); - + + if (!vendor || !product) { + return; + } + if (action == REMOVE){ if (g_hash_table_lookup (self->webcams_present, product) == NULL){ g_warning ("Got a remove event on a webcam device but we don't have that device in our webcam cache"); @@ -316,18 +320,23 @@ static void udev_mgr_handle_scsi_device (UdevMgr* self, { const gchar* type = NULL; type = g_udev_device_get_property (device, "TYPE"); - // apparently anything thats type 3 and SCSI is a Scanner + + if (!type) { + return; + } + + // apparently anything thats type 6 and SCSI is a Scanner if (g_strcmp0 (type, "6") == 0 && action == ADD){ const gchar* manufacturer = NULL; manufacturer = g_udev_device_get_property (device, "ID_VENDOR"); if (manufacturer != NULL){ - gchar * label = format_device_name(self, manufacturer, _("Scanner"), _("%s Scanner")); + gchar * label = format_device_name(self, manufacturer, _("Scanner"), _("%s Scanner")); dbusmenu_menuitem_property_set (self->scanner_item, DBUSMENU_MENUITEM_PROP_LABEL, label); - g_free(label); + g_free(label); } gchar* random_scanner_name = g_strdup_printf("%p--scanner", self); |