From 90c987b1683219a68f54c70fe4d58e4482df7df3 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Sat, 6 Dec 2014 11:10:51 -0600 Subject: Ensure that the active port is not null before looking at its value --- src/volume-control.vala | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/volume-control.vala b/src/volume-control.vala index 6f22dc5..3b175e5 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" || - i.active_port.name == "output-wired_headphone" || - i.active_port.name == "analog-output-headphones") { + 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")) { _active_port_headphone = true; } else { _active_port_headphone = false; -- cgit v1.2.3