You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As said in #2376, when using the "Dummy" audio device, the following error message is show at the program's shutdown: *** Error in lmms': free(): invalid size: 0x00000000020169b0 ***`
Here is what happens, which may be related to this problem:
By calling Mixer::stopProcessing(), the FIFO writer is stopped and deleted (audio devices, as opposed to audio file devices, typically use Mixer with the FIFO writer).
The audio device (Dummy), still running, calls Mixer::nextBuffer() which now renders a new buffer without the FIFO writer, but it looks like something goes wrong.
The text was updated successfully, but these errors were encountered:
As said in #2376, when using the "Dummy" audio device, the following error message is show at the program's shutdown:
*** Error in
lmms': free(): invalid size: 0x00000000020169b0 ***`Here is what happens, which may be related to this problem:
Mixer::stopProcessing()
, the FIFO writer is stopped and deleted (audio devices, as opposed to audio file devices, typically useMixer
with the FIFO writer).Mixer::nextBuffer()
which now renders a new buffer without the FIFO writer, but it looks like something goes wrong.The text was updated successfully, but these errors were encountered: