diff options
author | Antti Kaijanmäki <antti.kaijanmaki@canonical.com> | 2011-10-10 14:18:23 +0300 |
---|---|---|
committer | Antti Kaijanmäki <antti.kaijanmaki@canonical.com> | 2011-10-10 14:18:23 +0300 |
commit | e30cc3a7bab1409191d3003475eed46500d4f95f (patch) | |
tree | cce0f7976fa2e0b5053fc0b30118c030153f41e5 | |
parent | f5e29e773bd56d7aa6e459c46db6f68a4dd7f845 (diff) | |
download | ayatana-indicator-sound-e30cc3a7bab1409191d3003475eed46500d4f95f.tar.gz ayatana-indicator-sound-e30cc3a7bab1409191d3003475eed46500d4f95f.tar.bz2 ayatana-indicator-sound-e30cc3a7bab1409191d3003475eed46500d4f95f.zip |
Fix SIGABRT by validating sink and source indexes.
- closes: #850662
-rw-r--r-- | src/pulseaudio-mgr.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pulseaudio-mgr.c b/src/pulseaudio-mgr.c index a31084a..1da8ce1 100644 --- a/src/pulseaudio-mgr.c +++ b/src/pulseaudio-mgr.c @@ -174,6 +174,10 @@ reconnect_to_pulse (gpointer user_data) void pm_update_volume (gint sink_index, pa_cvolume new_volume) { + // LP: #850662 + if (sink_index < 0){ + return; + } pa_operation_unref (pa_context_set_sink_volume_by_index (pulse_context, sink_index, &new_volume, @@ -192,6 +196,10 @@ pm_update_mute (gboolean update) void pm_update_mic_gain (gint source_index, pa_cvolume new_gain) { + // LP: #850662 + if (source_index < 0){ + return; + } pa_operation_unref (pa_context_set_source_volume_by_index (pulse_context, source_index, &new_gain, @@ -202,6 +210,10 @@ pm_update_mic_gain (gint source_index, pa_cvolume new_gain) void pm_update_mic_mute (gint source_index, gint mute_update) { + // LP: #850662 + if (source_index < 0){ + return; + } pa_operation_unref (pa_context_set_source_mute_by_index (pulse_context, source_index, mute_update, |