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

Commit 237d9b27 authored by Elliott Hughes's avatar Elliott Hughes Committed by Gerrit Code Review
Browse files

Merge "libvulkan: track libziparchive API change."

parents babf98b7 54492044
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);