From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> I assume passing function == NULL means using direct_match() so make it reachable. --- src/shared/queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/queue.c b/src/shared/queue.c index 8bbb7df..4013293 100644 --- a/src/shared/queue.c +++ b/src/shared/queue.c @@ -234,7 +234,7 @@ void *queue_find(struct queue *queue, queue_match_func_t function, { struct queue_entry *entry; - if (!queue || !function) + if (!queue) return NULL; if (!function) -- 1.8.3.2 -- 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