Merge "adb: fix uninitialized variable."

This commit is contained in:
Treehugger Robot 2019-03-19 03:14:17 +00:00 committed by Gerrit Code Review
commit 588a87d68e

View file

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