Commit 626463a1 authored by David Reid's avatar David Reid

Fix a bug where a base node is being uninitialized twice.

parent 6281ed31
...@@ -10324,7 +10324,6 @@ MA_API void ma_engine_node_uninit(ma_engine_node* pEngineNode, const ma_allocati ...@@ -10324,7 +10324,6 @@ MA_API void ma_engine_node_uninit(ma_engine_node* pEngineNode, const ma_allocati
/* Now that the node has been uninitialized we can safely uninitialize the rest. */ /* Now that the node has been uninitialized we can safely uninitialize the rest. */
ma_resampler_uninit(&pEngineNode->resampler); ma_resampler_uninit(&pEngineNode->resampler);
ma_node_uninit(&pEngineNode->baseNode, pAllocationCallbacks);
} }
......
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