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

Commit 966b39b3 authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "adb: fix uninitialized variable."

am: 588a87d6

Change-Id: I87e9844a42d9a9e120a5f4e60149eb5ec3efbcdf
parents 54f3e37e 588a87d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ struct TransferId {
};

struct IoBlock {
    bool pending;
    bool pending = false;
    struct iocb control;
    std::shared_ptr<Block> payload;