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

Change-Id: I86042d0866724c152da5f052772933417b654fb8
diff --git a/adb/daemon/usb.cpp b/adb/daemon/usb.cpp
index f4458a2..d07a007 100644
--- a/adb/daemon/usb.cpp
+++ b/adb/daemon/usb.cpp
@@ -115,7 +115,7 @@
 };
 
 struct IoBlock {
-    bool pending;
+    bool pending = false;
     struct iocb control;
     std::shared_ptr<Block> payload;