From e69ace75ab894eed750b1deae1dc858548691ff5 Mon Sep 17 00:00:00 2001 From: Lukasz Rymanowski Date: Tue, 2 Dec 2014 12:01:09 +0100 Subject: [PATCH] shared/hfp: Improve prefix comparing --- src/shared/hfp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/hfp.c b/src/shared/hfp.c index 5a91d129e..ead082e7e 100644 --- a/src/shared/hfp.c +++ b/src/shared/hfp.c @@ -936,7 +936,7 @@ static bool match_handler_event_prefix(const void *a, const void *b) const struct event_handler *handler = a; const char *prefix = b; - if (memcmp(handler->prefix, prefix, strlen(prefix))) + if (strcmp(handler->prefix, prefix) != 0) return false; return true; -- 2.47.3