aboutsummaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
Diffstat (limited to 'render')
-rw-r--r--render/allocator/allocator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/allocator/allocator.c b/render/allocator/allocator.c
index 0597cf25..2c75421f 100644
--- a/render/allocator/allocator.c
+++ b/render/allocator/allocator.c
@@ -30,7 +30,7 @@ static int reopen_drm_node(int drm_fd, bool allow_render_node) {
if (drmIsMaster(drm_fd)) {
// Only recent kernels support empty leases
uint32_t lessee_id;
- int lease_fd = drmModeCreateLease(drm_fd, NULL, 0, 0, &lessee_id);
+ int lease_fd = drmModeCreateLease(drm_fd, NULL, 0, O_CLOEXEC, &lessee_id);
if (lease_fd >= 0) {
return lease_fd;
} else if (lease_fd != -EINVAL && lease_fd != -EOPNOTSUPP) {