diff options
author | IamSN0WBALL <[email protected]> | 2023-01-12 11:55:04 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-12 01:55:04 -0800 |
commit | a55c4b1e0d0eb295074e674cb3509f8254a63015 (patch) | |
tree | a7e09a58fa0a5648e39ad011c991274f09871ff9 /alc/backends/opensl.cpp | |
parent | 155d27de3aaed9fcdcc8d72a934d81ce8542410b (diff) |
Fix RingBuffer crash in OpenSL backend (#807)
Co-authored-by: IamSN0WBALL <[email protected]>
Diffstat (limited to 'alc/backends/opensl.cpp')
-rw-r--r-- | alc/backends/opensl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/backends/opensl.cpp b/alc/backends/opensl.cpp index b3c90880..f46438ce 100644 --- a/alc/backends/opensl.cpp +++ b/alc/backends/opensl.cpp @@ -619,7 +619,7 @@ void OpenSLPlayback::stop() } while(SL_RESULT_SUCCESS == result && state.count > 0); PRINTERR(result, "bufferQueue->GetState"); - mRing.reset(); + mRing->reset(); } } |