Commit 4e795263 authored by Felix Paul Kühne's avatar Felix Paul Kühne

qtsound: fix crash when freeing memory

parent 2428c90c
...@@ -184,7 +184,7 @@ vlc_module_end () ...@@ -184,7 +184,7 @@ vlc_module_end ()
{ {
@synchronized (self) { @synchronized (self) {
if (rawAudioData) if (rawAudioData)
free(rawAudioData); block_Release(rawAudioData);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment