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

Commit 2eb10c00 authored by Nick Kralevich's avatar Nick Kralevich Committed by Android Git Automerger
Browse files

am 05ad674a: am 00e165ae: am e8101c04: Merge "fix compiler error under FORTIFY_SOURCE=2"

* commit '05ad674a':
  fix compiler error under FORTIFY_SOURCE=2
parents 0f94fc6f 05ad674a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -337,7 +337,9 @@ bool ObbFile::removeFrom(int fd)
        return false;
    }

    ftruncate(fd, mFooterStart);
    if (ftruncate(fd, mFooterStart) == -1) {
        return false;
    }

    return true;
}