1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:07:45 +00:00

AK::Buffer should not free unowned backing stores, duh.

This commit is contained in:
Andreas Kling 2018-10-11 12:30:35 +02:00
parent 0abc19b0ff
commit f282df6617

View file

@ -23,7 +23,8 @@ public:
{ {
if (!m_elements) if (!m_elements)
return; return;
kfree(m_elements); if (m_owned)
kfree(m_elements);
m_elements = nullptr; m_elements = nullptr;
} }