diff options
author | Tao Bao <tbao@google.com> | 2016-11-29 19:04:12 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-11-29 19:04:12 +0100 |
commit | 8762a560fcc841a44bd571ce51f9d0e2f985cb6d (patch) | |
tree | 073af2fb4db947ed990c3184da780e028a032b98 /applypatch | |
parent | Merge "Add ota_close(unique_fd&) and ota_fclose(std::unique_ptr<FILE>&)." am: eed7f607cf (diff) | |
parent | Merge "Remove ota_close(int) and ota_fclose(FILE*)." (diff) | |
download | android_bootable_recovery-8762a560fcc841a44bd571ce51f9d0e2f985cb6d.tar android_bootable_recovery-8762a560fcc841a44bd571ce51f9d0e2f985cb6d.tar.gz android_bootable_recovery-8762a560fcc841a44bd571ce51f9d0e2f985cb6d.tar.bz2 android_bootable_recovery-8762a560fcc841a44bd571ce51f9d0e2f985cb6d.tar.lz android_bootable_recovery-8762a560fcc841a44bd571ce51f9d0e2f985cb6d.tar.xz android_bootable_recovery-8762a560fcc841a44bd571ce51f9d0e2f985cb6d.tar.zst android_bootable_recovery-8762a560fcc841a44bd571ce51f9d0e2f985cb6d.zip |
Diffstat (limited to 'applypatch')
-rw-r--r-- | applypatch/applypatch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applypatch/applypatch.cpp b/applypatch/applypatch.cpp index 0250407a5..95389da6e 100644 --- a/applypatch/applypatch.cpp +++ b/applypatch/applypatch.cpp @@ -66,7 +66,7 @@ int LoadFileContents(const char* filename, FileContents* file) { } std::vector<unsigned char> data(file->st.st_size); - std::unique_ptr<FILE, int (*)(FILE*)> f(ota_fopen(filename, "rb"), ota_fclose); + unique_file f(ota_fopen(filename, "rb")); if (!f) { printf("failed to open \"%s\": %s\n", filename, strerror(errno)); return -1; @@ -118,7 +118,7 @@ static int LoadPartitionContents(const std::string& filename, FileContents* file std::sort(pairs.begin(), pairs.end()); const char* partition = pieces[1].c_str(); - std::unique_ptr<FILE, int (*)(FILE*)> dev(ota_fopen(partition, "rb"), ota_fclose); + unique_file dev(ota_fopen(partition, "rb")); if (!dev) { printf("failed to open emmc partition \"%s\": %s\n", partition, strerror(errno)); return -1; |