aboutsummaryrefslogtreecommitdiff
path: root/src/volume-control.vala
diff options
context:
space:
mode:
authorDmitry Shachnev <mitya57@ubuntu.com>2014-11-23 15:03:22 +0300
committerDmitry Shachnev <mitya57@ubuntu.com>2014-11-23 15:03:22 +0300
commitbc82d53ffb97ed3bed87e65f4dc3dabea99cd9b3 (patch)
tree54152776afadec6cd5abaece164aea822679ec87 /src/volume-control.vala
parent2f0aba374502b7ea660fce49f70e3ea972725685 (diff)
downloadayatana-indicator-sound-bc82d53ffb97ed3bed87e65f4dc3dabea99cd9b3.tar.gz
ayatana-indicator-sound-bc82d53ffb97ed3bed87e65f4dc3dabea99cd9b3.tar.bz2
ayatana-indicator-sound-bc82d53ffb97ed3bed87e65f4dc3dabea99cd9b3.zip
Fix crash when active_port is null.
Diffstat (limited to 'src/volume-control.vala')
-rw-r--r--src/volume-control.vala5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/volume-control.vala b/src/volume-control.vala
index 6f22dc5..6201935 100644
--- a/src/volume-control.vala
+++ b/src/volume-control.vala
@@ -185,9 +185,10 @@ public class VolumeControl : Object
* checking for the port name. On touch (with the pulseaudio droid element)
* the headset/headphone port is called 'output-headset' and 'output-headphone'.
* On the desktop this is usually called 'analog-output-headphones' */
- if (i.active_port.name == "output-wired_headset" ||
+ if (i.active_port != null && (
+ i.active_port.name == "output-wired_headset" ||
i.active_port.name == "output-wired_headphone" ||
- i.active_port.name == "analog-output-headphones") {
+ i.active_port.name == "analog-output-headphones")) {
_active_port_headphone = true;
} else {
_active_port_headphone = false;