Merge "Initialize all fields of struct iocb."

am: 6e06bcce9c

Change-Id: Iced013625dab9e8ce8f95209c48feabfb4bb1c17
This commit is contained in:
Evgenii Stepanov 2019-05-15 23:58:28 -07:00 committed by android-build-merger
commit 37c81fd6f0

View file

@ -119,7 +119,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); }