diff options
author | Tianjie Xu <xunchang@google.com> | 2017-07-20 01:09:20 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-07-20 01:09:20 +0200 |
commit | 96b5bb9601033d6c2371f2c71f5030717f5abcfd (patch) | |
tree | b8f24a1af336f7fd0236e5ccf861ac2b15c383ed /minui/resources.cpp | |
parent | Merge "Fix the missing char when showing recovery logs." am: 8155a8ba74 (diff) | |
parent | Merge "Fix the android-cloexec-* warnings in bootable/recovery" (diff) | |
download | android_bootable_recovery-96b5bb9601033d6c2371f2c71f5030717f5abcfd.tar android_bootable_recovery-96b5bb9601033d6c2371f2c71f5030717f5abcfd.tar.gz android_bootable_recovery-96b5bb9601033d6c2371f2c71f5030717f5abcfd.tar.bz2 android_bootable_recovery-96b5bb9601033d6c2371f2c71f5030717f5abcfd.tar.lz android_bootable_recovery-96b5bb9601033d6c2371f2c71f5030717f5abcfd.tar.xz android_bootable_recovery-96b5bb9601033d6c2371f2c71f5030717f5abcfd.tar.zst android_bootable_recovery-96b5bb9601033d6c2371f2c71f5030717f5abcfd.zip |
Diffstat (limited to '')
-rw-r--r-- | minui/resources.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/resources.cpp b/minui/resources.cpp index 86c731b02..8f8d36d27 100644 --- a/minui/resources.cpp +++ b/minui/resources.cpp @@ -56,7 +56,7 @@ static int open_png(const char* name, png_structp* png_ptr, png_infop* info_ptr, snprintf(resPath, sizeof(resPath)-1, "/res/images/%s.png", name); resPath[sizeof(resPath)-1] = '\0'; - FILE* fp = fopen(resPath, "rb"); + FILE* fp = fopen(resPath, "rbe"); if (fp == NULL) { result = -1; goto exit; |