Merge "Initialize all fields of struct iocb." into qt-dev

This commit is contained in:
TreeHugger Robot 2019-05-16 23:27:38 +00:00 committed by Android (Google) Code Review
commit 982259add1

View file

@ -117,7 +117,7 @@ struct TransferId {
struct IoBlock {
bool pending = false;
struct iocb control;
struct iocb control = {};
std::shared_ptr<Block> payload;
TransferId id() const { return TransferId::from_value(control.aio_data); }