From: Grazvydas Ignotas Date: Tue, 2 May 2017 16:26:17 +0000 (+0300) Subject: anv: fix possible stack corruption X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e0aee8b667955675e2e6c647a88048b64bc2796e;p=mesa.git anv: fix possible stack corruption drmGetDevices2 takes count and not size. Probably hasn't caused problems yet in practice and was missed as setups with more than 8 DRM devices are not very common. Fixes: b1fb6e8d "anv: do not open random render node(s)" Signed-off-by: Grazvydas Ignotas Reviewed-by: Lionel Landwerlin --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 5e4a62ba575..a64eae1ac99 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -510,7 +510,7 @@ anv_enumerate_devices(struct anv_instance *instance) instance->physicalDeviceCount = 0; - max_devices = drmGetDevices2(0, devices, sizeof(devices)); + max_devices = drmGetDevices2(0, devices, ARRAY_SIZE(devices)); if (max_devices < 1) return VK_ERROR_INCOMPATIBLE_DRIVER;