Commit 82af1612 authored by Max Kellermann's avatar Max Kellermann

output/pulse: initialize pulse_output.mixer

This variable was uninitialized and led to crashes.
parent 9fed97b1
...@@ -274,6 +274,7 @@ pulse_output_init(G_GNUC_UNUSED const struct audio_format *audio_format, ...@@ -274,6 +274,7 @@ pulse_output_init(G_GNUC_UNUSED const struct audio_format *audio_format,
po->server = config_get_block_string(param, "server", NULL); po->server = config_get_block_string(param, "server", NULL);
po->sink = config_get_block_string(param, "sink", NULL); po->sink = config_get_block_string(param, "sink", NULL);
po->mixer = NULL;
po->mainloop = NULL; po->mainloop = NULL;
po->context = NULL; po->context = NULL;
po->stream = NULL; po->stream = NULL;
......
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