diff options
-rw-r--r-- | adb/client/usb_windows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adb/client/usb_windows.cpp b/adb/client/usb_windows.cpp index 9751ebf79..f529e8f32 100644 --- a/adb/client/usb_windows.cpp +++ b/adb/client/usb_windows.cpp @@ -75,7 +75,7 @@ struct usb_handle : public ::usb_handle { static const GUID usb_class_id = ANDROID_USB_CLASS_ID; /// List of opened usb handles -static std::vector<usb_handle*> handle_list; +static std::vector<usb_handle*>& handle_list = *new std::vector<usb_handle*>(); /// Locker for the list of opened usb handles static std::mutex& usb_lock = *new std::mutex(); |