Merge "adb: fix uninitialized variable." am: 588a87d68e am: 966b39b34c

am: 4ba1491a38

Change-Id: I5765725c70d659e73b5b852cad0095a9d0d52522
This commit is contained in:
Josh Gao 2019-03-18 20:49:51 -07:00 committed by android-build-merger
commit c57206a541

View file

@ -115,7 +115,7 @@ struct TransferId {
};
struct IoBlock {
bool pending;
bool pending = false;
struct iocb control;
std::shared_ptr<Block> payload;