From 9b5bf7afced7ef7dd1b379023df8cd8ed333b160 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Wed, 8 Aug 2018 14:56:00 +0100 Subject: [PATCH] egl/android: use strcmp with drmVersion::name The name string is guaranteed to be NULL terminated. Drop the explicit length check that comes with strncmp(). Signed-off-by: Emil Velikov Reviewed-by: Tomasz Figa --- src/egl/drivers/dri2/platform_android.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/egl/drivers/dri2/platform_android.c b/src/egl/drivers/dri2/platform_android.c index 9877c49fdd9..ee6c2791b18 100644 --- a/src/egl/drivers/dri2/platform_android.c +++ b/src/egl/drivers/dri2/platform_android.c @@ -1437,7 +1437,7 @@ droid_probe_device(_EGLDisplay *disp, int fd, const char *vendor) goto cleanup; } - if (vendor && strncmp(vendor, ver->name, PROPERTY_VALUE_MAX) != 0) { + if (vendor && strcmp(vendor, ver->name) != 0) { ret = probe_filtered_out; goto cleanup; } -- 2.30.2