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

This commit is contained in:
David Reid
2021-01-29 17:40:14 +10:00
parent 6281ed3165
commit 626463a13e
-1
View File
@@ -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. */
ma_resampler_uninit(&pEngineNode->resampler);
ma_node_uninit(&pEngineNode->baseNode, pAllocationCallbacks);
}