mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:38:10 +00:00
Kernel: Zero initialize DoubleBuffer::InnerBuffer::size
Found by PVS-Studio.
This commit is contained in:
parent
8a8c51c39a
commit
ddd75db007
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ private:
|
|||
|
||||
struct InnerBuffer {
|
||||
u8* data { nullptr };
|
||||
size_t size;
|
||||
size_t size { 0 };
|
||||
};
|
||||
|
||||
InnerBuffer* m_write_buffer { nullptr };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue