[Mesa-stable] [PATCH 5/8] anv: don't double-close the same fd
Emil Velikov
emil.l.velikov at gmail.com
Thu Nov 24 20:30:42 UTC 2016
From: Emil Velikov <emil.velikov at collabora.com>
Cc: "13.0" <mesa-stable at lists.freedesktop.org>
Signed-off-by: Emil Velikov <emil.velikov at collabora.com>
---
src/intel/vulkan/anv_device.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
index 4711501..0e01e28 100644
--- a/src/intel/vulkan/anv_device.c
+++ b/src/intel/vulkan/anv_device.c
@@ -192,8 +192,6 @@ anv_physical_device_init(struct anv_physical_device *device,
device->info.max_cs_threads = max_cs_threads;
}
- close(fd);
-
brw_process_intel_debug_variable();
device->compiler = brw_compiler_create(NULL, &device->info);
@@ -220,6 +218,7 @@ anv_physical_device_init(struct anv_physical_device *device,
/* XXX: Actually detect bit6 swizzling */
isl_device_init(&device->isl_dev, &device->info, swizzled);
+ close(fd);
return VK_SUCCESS;
fail:
--
2.10.2
More information about the mesa-stable
mailing list