Closed grahamlyus closed 3 years ago
I encountered occasional panics due to lame_encode_flush returning -3. I think this is due to the finalizer calling e.Close directly and then Close being called afterward.
lame_encode_flush
-3
finalizer
e.Close
Close
Makes sense. Haven't come across that behaviour. Will merge it tomorrow after a closer look
I encountered occasional panics due to
lame_encode_flush
returning-3
. I think this is due to thefinalizer
callinge.Close
directly and thenClose
being called afterward.