Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54492044 authored by Elliott Hughes's avatar Elliott Hughes
Browse files

libvulkan: track libziparchive API change.

Bug: http://b/129068177
Test: treehugger
Change-Id: Ie494ce2275d90ac385aed89c2ed6c4d235230a50
parent eb975070
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -385,9 +385,8 @@ void ForEachFileInZip(const std::string& zipname,
        return;
    }
    std::string prefix(dir_in_zip + "/");
    const ZipString prefix_str(prefix.c_str());
    void* iter_cookie = nullptr;
    if ((err = StartIteration(zip, &iter_cookie, &prefix_str, nullptr)) != 0) {
    if ((err = StartIteration(zip, &iter_cookie, prefix, "")) != 0) {
        ALOGE("failed to iterate entries in apk '%s': %d", zipname.c_str(),
              err);
        CloseArchive(zip);