summaryrefslogtreecommitdiffstats
path: root/plugins/sap.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/sap.c')
-rw-r--r--plugins/sap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sap.c b/plugins/sap.c
index b679ce5f..574031ab 100644
--- a/plugins/sap.c
+++ b/plugins/sap.c
@@ -234,13 +234,13 @@ static void bluetooth_sap_remove(const char *prefix)
DBG("%s", prefix);
- if (modem_hash == NULL || prefix == NULL)
+ if (modem_hash == NULL)
return;
g_hash_table_iter_init(&iter, modem_hash);
while (g_hash_table_iter_next(&iter, &key, &value)) {
- if (g_str_has_prefix((char *)key, prefix) == FALSE)
+ if (prefix && g_str_has_prefix((char *)key, prefix) == FALSE)
continue;
g_hash_table_iter_remove(&iter);