Commit 8cf206f2 authored by Max Kellermann's avatar Max Kellermann

pulse_mixer: initialize "online" and "index" in open()

The attributes "online" and "index" were not properly reinitialized after a close/open cycle.
parent 52575d1b
......@@ -165,7 +165,6 @@ pulse_mixer_init(const struct config_param *param)
pm->mainloop=NULL;
pm->volume=NULL;
pm->output_name=NULL;
pm->index=0;
pm->online=false;
pm->volume = g_new(struct pa_cvolume,1);
......@@ -184,7 +183,6 @@ pulse_mixer_finish(struct mixer *data)
pm->context = NULL;
pm->mainloop = NULL;
pm->volume = NULL;
pm->online = false;
g_free(pm);
}
......@@ -226,6 +224,9 @@ pulse_mixer_open(G_GNUC_UNUSED struct mixer *data)
struct pulse_mixer *pm = (struct pulse_mixer *) data;
g_debug("pulse mixer open");
pm->index = 0;
pm->online = false;
if(!(pm->mainloop = pa_threaded_mainloop_new())) {
g_debug("failed mainloop");
return false;
......@@ -267,6 +268,8 @@ pulse_mixer_close(G_GNUC_UNUSED struct mixer *data)
pa_threaded_mainloop_free(pm->mainloop);
pm->mainloop = NULL;
}
pm->online = false;
}
static int
......
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