Merge "adb: fix uninitialized variable."
This commit is contained in:
commit
588a87d68e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue