From ea41c2e66a0481961b5c322b774f82d97f7208a5 Mon Sep 17 00:00:00 2001 From: Lukasz Rymanowski Date: Fri, 31 Oct 2014 10:32:32 +0100 Subject: [PATCH] shared/hfp: Remove redundant check To make this check strcmp is good enough. No need to check len first and then do memory compare. --- src/shared/hfp.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/shared/hfp.c b/src/shared/hfp.c index 9a66ed250..0ce38cc24 100644 --- a/src/shared/hfp.c +++ b/src/shared/hfp.c @@ -135,10 +135,7 @@ static bool match_handler_prefix(const void *a, const void *b) const struct cmd_handler *handler = a; const char *prefix = b; - if (strlen(handler->prefix) != strlen(prefix)) - return false; - - if (memcmp(handler->prefix, prefix, strlen(prefix))) + if (strcmp(handler->prefix, prefix) != 0) return false; return true; -- 2.47.3