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

This commit is contained in:
Andreas Kling 2018-10-11 12:30:35 +02:00
commit f282df6617
Notes: sideshowbarker 2024-07-19 18:50:58 +09:00

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;
} }