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-source-output.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-source-output.c')
-rw-r--r-- | backends/pulse/pulse-source-output.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/backends/pulse/pulse-source-output.c b/backends/pulse/pulse-source-output.c index a48f9f6..9a38250 100644 --- a/backends/pulse/pulse-source-output.c +++ b/backends/pulse/pulse-source-output.c @@ -134,8 +134,12 @@ pulse_source_output_new (PulseSource *source, NULL); g_free (name); - if (app_info != NULL) - pulse_stream_control_set_app_info (PULSE_STREAM_CONTROL (output), app_info); + if (app_info != NULL) { + /* Takes ownership of app_info */ + pulse_stream_control_set_app_info (PULSE_STREAM_CONTROL (output), + app_info, + TRUE); + } pulse_source_output_update (output, info); return output; |