if inst->channel is null... dont segv at least in mixer.

This commit is contained in:
Carsten Haitzler 2013-04-21 00:17:12 +09:00
parent b78f562132
commit 0985de0051
1 changed files with 7 additions and 5 deletions

View File

@ -590,9 +590,10 @@ _mixer_popup_new(E_Mixer_Instance *inst)
state = &inst->mixer_state;
e_mod_mixer_state_get(inst->sys, inst->channel, state);
if (e_mod_mixer_channel_has_no_volume(inst->channel) ||
e_mod_mixer_channel_is_mono(inst->channel) ||
(inst->conf->lock_sliders && !inst->conf->show_locked))
if ((inst->channel) &&
(e_mod_mixer_channel_has_no_volume(inst->channel) ||
e_mod_mixer_channel_is_mono(inst->channel) ||
(inst->conf->lock_sliders && !inst->conf->show_locked)))
colspan = 1;
else
colspan = 2;
@ -620,7 +621,8 @@ _mixer_popup_new(E_Mixer_Instance *inst)
}
else
{
if (e_mod_mixer_channel_has_no_volume(inst->channel))
if ((inst->channel) &&
(e_mod_mixer_channel_has_no_volume(inst->channel)))
{
inst->ui.left = _mixer_popup_add_slider(inst, 0, NULL);
e_widget_table_object_append(inst->ui.table, inst->ui.left,
@ -637,7 +639,7 @@ _mixer_popup_new(E_Mixer_Instance *inst)
inst->ui.right = NULL;
}
if (e_mod_mixer_channel_is_mutable(inst->channel))
if ((inst->channel) && (e_mod_mixer_channel_is_mutable(inst->channel)))
{
inst->ui.mute = e_widget_check_add(evas, _("Mute"), &state->mute);
evas_object_show(inst->ui.mute);