Kernel: Zero initialize USBDevice::m_device_descriptor

Found by PVS-Studio.
This commit is contained in:
Brian Gianforcaro 2022-03-13 21:13:01 -07:00 committed by Brian Gianforcaro
commit 160c9b7631
Notes: sideshowbarker 2024-07-17 17:13:32 +09:00

View file

@ -54,7 +54,7 @@ protected:
// Device description // Device description
u16 m_vendor_id { 0 }; // This device's vendor ID assigned by the USB group u16 m_vendor_id { 0 }; // This device's vendor ID assigned by the USB group
u16 m_product_id { 0 }; // This device's product ID assigned by the USB group u16 m_product_id { 0 }; // This device's product ID assigned by the USB group
USBDeviceDescriptor m_device_descriptor; // Device Descriptor obtained from USB Device USBDeviceDescriptor m_device_descriptor {}; // Device Descriptor obtained from USB Device
NonnullRefPtr<USBController> m_controller; NonnullRefPtr<USBController> m_controller;
NonnullOwnPtr<Pipe> m_default_pipe; // Default communication pipe (endpoint0) used during enumeration NonnullOwnPtr<Pipe> m_default_pipe; // Default communication pipe (endpoint0) used during enumeration