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

Commit a23e8a9f authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Merge "libvulkan: track libziparchive API change." am: 237d9b27 am: ae120558

am: 7d3f0005

Change-Id: I3f6e37f0a698d94729358a3606d4627ba8ce4929
parents c94b9bb6 7d3f0005
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -388,9 +388,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);