Commit 433b7e8e authored by David Reid's avatar David Reid

Fix a bug in the ring buffer.

parent bd689c56
...@@ -28730,7 +28730,7 @@ void mal_rb_uninit(mal_rb* pRB) ...@@ -28730,7 +28730,7 @@ void mal_rb_uninit(mal_rb* pRB)
} }
if (pRB->ownsBuffer) { if (pRB->ownsBuffer) {
mal_free(pRB->pBuffer); mal_aligned_free(pRB->pBuffer);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment