If name or data->name is null we have a null dereference. Not name and data->name. --- gdbus/watch.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gdbus/watch.c b/gdbus/watch.c index 38bf3d7..607803c 100644 --- a/gdbus/watch.c +++ b/gdbus/watch.c @@ -62,7 +62,7 @@ static struct name_data *name_data_find(DBusConnection *connection, current != NULL; current = current->next) { struct name_data *data = current->data; - if (name == NULL && data->name == NULL) { + if (name == NULL || data->name == NULL) { if (connection == data->connection) return data; } else { -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html