From: Ilias Apalodimas Date: Thu, 19 Jan 2023 09:21:37 +0000 (+0200) Subject: tee: optee: fix uuid comparisons on service discovery X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=eda976d36a37d459da5908fb922173a4bafe8666;p=u-boot.git tee: optee: fix uuid comparisons on service discovery When comparing UUIDs for discovered services we only compare up to the ptr size instead of the entire UUID Fixes: 94ccfb78a4d61 ("drivers: tee: optee: discover OP-TEE services") Signed-off-by: Ilias Apalodimas Reviewed-by: Etienne Carriere Reviewed-by: Jens Wiklander --- diff --git a/drivers/tee/optee/core.c b/drivers/tee/optee/core.c index 88e23d252b..9a9b697e91 100644 --- a/drivers/tee/optee/core.c +++ b/drivers/tee/optee/core.c @@ -73,7 +73,7 @@ static struct optee_service *find_service_driver(const struct tee_optee_ta_uuid for (idx = 0; idx < service_cnt; idx++, service++) { tee_optee_ta_uuid_to_octets(loc_uuid, &service->uuid); - if (!memcmp(uuid, loc_uuid, sizeof(uuid))) + if (!memcmp(uuid, loc_uuid, sizeof(*uuid))) return service; }