Commit 2d66a357 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

PulseAudio: fix crash on error path

parent 30a45481
...@@ -886,14 +886,15 @@ static int Start(audio_output_t *aout, audio_sample_format_t *restrict fmt) ...@@ -886,14 +886,15 @@ static int Start(audio_output_t *aout, audio_sample_format_t *restrict fmt)
fmt->i_rate = spec->rate; fmt->i_rate = spec->rate;
stream_buffer_attr_cb(s, aout); stream_buffer_attr_cb(s, aout);
var_AddCallback (aout, "audio-device", StreamMove, s);
stream_moved_cb(s, aout); stream_moved_cb(s, aout);
pa_threaded_mainloop_unlock(sys->mainloop); pa_threaded_mainloop_unlock(sys->mainloop);
var_AddCallback (aout, "audio-device", StreamMove, s);
return VLC_SUCCESS; return VLC_SUCCESS;
fail: fail:
pa_threaded_mainloop_unlock(sys->mainloop); pa_threaded_mainloop_unlock(sys->mainloop);
var_AddCallback (aout, "audio-device", StreamMove, s);
Stop(aout); Stop(aout);
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
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