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

Commit 5813e688 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix double close in RecordedTransaction fuzzer"

parents 504c912d 1420afd9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
    rewind(intermediateFile);
    int fileNumber = fileno(intermediateFile);

    android::base::unique_fd fd(fileNumber);
    android::base::unique_fd fd(dup(fileNumber));

    auto transaction = android::binder::debug::RecordedTransaction::fromFile(fd);