now properly closing the error ringbuf

This commit is contained in:
Spencer Russell 2018-08-16 15:59:00 -04:00
parent bc32d13f7d
commit 45bfdc4830

View file

@ -213,6 +213,7 @@ function close(stream::PortAudioStream)
Pa_CloseStream(stream.stream)
close(stream.source)
close(stream.sink)
close(stream.errbuf)
stream.stream = C_NULL
end