diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-10-13 09:53:21 -0400 |
---|---|---|
committer | Bazaar Package Importer <james.westby@ubuntu.com> | 2011-10-13 09:53:21 -0400 |
commit | 76bf30b6725310d06c4a521e4570abdafea0475c (patch) | |
tree | 3bbd8b49fbe8aa8494fe37a682901ffaff75005a /src | |
parent | b833e3a56d5d4887bd478df759780215d91cea01 (diff) | |
parent | bf58931fb653267839b32c980425c3d2183157d2 (diff) | |
download | ayatana-indicator-sound-76bf30b6725310d06c4a521e4570abdafea0475c.tar.gz ayatana-indicator-sound-76bf30b6725310d06c4a521e4570abdafea0475c.tar.bz2 ayatana-indicator-sound-76bf30b6725310d06c4a521e4570abdafea0475c.zip |
* New upstream release.
- Protect against source indexes that are lower than 0 (LP: #850662)
Diffstat (limited to 'src')
-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, |