From 69269a46f10f4ad67452a198fe6381953444d741 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 5 Jun 2020 10:55:22 +0200 Subject: [PATCH] vulkan/wsi: replace all dup() with os_dupfd_cloexec() Signed-off-by: Eric Engestrom Reviewed-by: Kristian H. Kristensen Reviewed-by: Lionel Landwerlin Part-of: --- src/vulkan/wsi/wsi_common.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vulkan/wsi/wsi_common.c b/src/vulkan/wsi/wsi_common.c index 7df24a61603..d9906091ed9 100644 --- a/src/vulkan/wsi/wsi_common.c +++ b/src/vulkan/wsi/wsi_common.c @@ -24,6 +24,7 @@ #include "wsi_common_private.h" #include "drm-uapi/drm_fourcc.h" #include "util/macros.h" +#include "util/os_file.h" #include "util/xmlconfig.h" #include "vk_util.h" @@ -621,7 +622,7 @@ wsi_create_native_image(const struct wsi_swapchain *chain, if (p == 0) { image->fds[p] = fd; } else { - image->fds[p] = dup(fd); + image->fds[p] = os_dupfd_cloexec(fd); if (image->fds[p] == -1) { for (uint32_t i = 0; i < p; i++) close(image->fds[i]); -- 2.30.2