summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-02-09 21:59:19 +0100
committerTao Bao <tbao@google.com>2017-02-09 21:59:19 +0100
commitf04592ba230139d5132ebd8bb8610f6a98836882 (patch)
treeb2380e8f70e86581af453c9500a028d846d8bfd3
parentMerge "minui: Clean up graphics_fbdev.cpp." (diff)
downloadandroid_bootable_recovery-f04592ba230139d5132ebd8bb8610f6a98836882.tar
android_bootable_recovery-f04592ba230139d5132ebd8bb8610f6a98836882.tar.gz
android_bootable_recovery-f04592ba230139d5132ebd8bb8610f6a98836882.tar.bz2
android_bootable_recovery-f04592ba230139d5132ebd8bb8610f6a98836882.tar.lz
android_bootable_recovery-f04592ba230139d5132ebd8bb8610f6a98836882.tar.xz
android_bootable_recovery-f04592ba230139d5132ebd8bb8610f6a98836882.tar.zst
android_bootable_recovery-f04592ba230139d5132ebd8bb8610f6a98836882.zip
-rw-r--r--minui/graphics_adf.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/minui/graphics_adf.cpp b/minui/graphics_adf.cpp
index 17f30d1d4..9ab0b06bf 100644
--- a/minui/graphics_adf.cpp
+++ b/minui/graphics_adf.cpp
@@ -67,8 +67,9 @@ static int adf_surface_init(adf_pdata* pdata, drm_mode_modeinfo* mode, adf_surfa
surf->base.data = static_cast<uint8_t*>(mmap(nullptr, surf->pitch * surf->base.height, PROT_WRITE,
MAP_SHARED, surf->fd, surf->offset));
if (surf->base.data == MAP_FAILED) {
+ int saved_errno = errno;
close(surf->fd);
- return -errno;
+ return -saved_errno;
}
return 0;