From: Emil Velikov Date: Wed, 8 Aug 2018 13:56:00 +0000 (+0100) Subject: egl/android: use strcmp with drmVersion::name X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b5bf7afced7ef7dd1b379023df8cd8ed333b160;p=mesa.git 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 --- 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; }