Kernel: Initialize primitive class member of ACPISysFSComponent to zero

This commit is contained in:
Liav A 2022-10-15 18:08:52 +03:00 committed by Gunnar Beutner
parent aacc49bab5
commit 11a5f2c508
Notes: sideshowbarker 2024-07-17 07:35:03 +09:00

View file

@ -42,7 +42,7 @@ protected:
ACPISysFSComponent(NonnullOwnPtr<KString> table_name, PhysicalAddress, size_t table_size);
PhysicalAddress m_paddr;
size_t m_length;
size_t m_length { 0 };
NonnullOwnPtr<KString> m_table_name;
};