diff options
author | Michal Ratajsky <[email protected]> | 2016-01-04 20:31:14 +0100 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2016-01-04 20:31:14 +0100 |
commit | 9772797c31ebed2417b42a9389caae1b16847e86 (patch) | |
tree | 0257271d6f8387ce89984bf8341b11186381c8d5 /backends/pulse/pulse-ext-stream.c | |
parent | d32ca3f420d036cd750fc1aad7f95da40559cc5d (diff) | |
download | libmatemixer-9772797c31ebed2417b42a9389caae1b16847e86.tar.bz2 libmatemixer-9772797c31ebed2417b42a9389caae1b16847e86.tar.xz |
Improve error checking in many places
Diffstat (limited to 'backends/pulse/pulse-ext-stream.c')
-rw-r--r-- | backends/pulse/pulse-ext-stream.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/backends/pulse/pulse-ext-stream.c b/backends/pulse/pulse-ext-stream.c index 2ebf8e7..e99fbb1 100644 --- a/backends/pulse/pulse-ext-stream.c +++ b/backends/pulse/pulse-ext-stream.c @@ -393,8 +393,12 @@ pulse_ext_stream_update (PulseExtStream *ext, _mate_mixer_stream_control_set_flags (MATE_MIXER_STREAM_CONTROL (ext), flags); /* Also set initially, but may change at any time */ - _mate_mixer_stream_control_set_stream (MATE_MIXER_STREAM_CONTROL (ext), - MATE_MIXER_STREAM (parent)); + if (parent != NULL) + _mate_mixer_stream_control_set_stream (MATE_MIXER_STREAM_CONTROL (ext), + MATE_MIXER_STREAM (parent)); + else + _mate_mixer_stream_control_set_stream (MATE_MIXER_STREAM_CONTROL (ext), + NULL); g_object_thaw_notify (G_OBJECT (ext)); } |