summaryrefslogtreecommitdiffstats
path: root/minui/graphics_drm.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-01-16 18:29:17 +0100
committerTao Bao <tbao@google.com>2019-03-01 23:24:41 +0100
commitb549243b2716c293d0a1be45fe28088b0150789d (patch)
treea9fda0ad47571634be7129c40cdde52ef33a15e0 /minui/graphics_drm.cpp
parentMerge "Use android::base::Pipe." (diff)
downloadandroid_bootable_recovery-b549243b2716c293d0a1be45fe28088b0150789d.tar
android_bootable_recovery-b549243b2716c293d0a1be45fe28088b0150789d.tar.gz
android_bootable_recovery-b549243b2716c293d0a1be45fe28088b0150789d.tar.bz2
android_bootable_recovery-b549243b2716c293d0a1be45fe28088b0150789d.tar.lz
android_bootable_recovery-b549243b2716c293d0a1be45fe28088b0150789d.tar.xz
android_bootable_recovery-b549243b2716c293d0a1be45fe28088b0150789d.tar.zst
android_bootable_recovery-b549243b2716c293d0a1be45fe28088b0150789d.zip
Diffstat (limited to 'minui/graphics_drm.cpp')
-rw-r--r--minui/graphics_drm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/graphics_drm.cpp b/minui/graphics_drm.cpp
index 765e2625a..7b2eed15d 100644
--- a/minui/graphics_drm.cpp
+++ b/minui/graphics_drm.cpp
@@ -285,7 +285,7 @@ GRSurface* MinuiBackendDrm::Init() {
/* Consider DRM devices in order. */
for (int i = 0; i < DRM_MAX_MINOR; i++) {
auto dev_name = android::base::StringPrintf(DRM_DEV_NAME, DRM_DIR_NAME, i);
- android::base::unique_fd fd(open(dev_name.c_str(), O_RDWR));
+ android::base::unique_fd fd(open(dev_name.c_str(), O_RDWR | O_CLOEXEC));
if (fd == -1) continue;
/* We need dumb buffers. */