From 9772797c31ebed2417b42a9389caae1b16847e86 Mon Sep 17 00:00:00 2001 From: Michal Ratajsky Date: Mon, 4 Jan 2016 20:31:14 +0100 Subject: Improve error checking in many places --- backends/pulse/pulse-source-switch.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'backends/pulse/pulse-source-switch.c') diff --git a/backends/pulse/pulse-source-switch.c b/backends/pulse/pulse-source-switch.c index 9616bb1..76f97f0 100644 --- a/backends/pulse/pulse-source-switch.c +++ b/backends/pulse/pulse-source-switch.c @@ -24,6 +24,7 @@ #include "pulse-connection.h" #include "pulse-port.h" #include "pulse-port-switch.h" +#include "pulse-source.h" #include "pulse-source-switch.h" #include "pulse-stream.h" @@ -52,6 +53,10 @@ pulse_source_switch_init (PulseSourceSwitch *swtch) PulsePortSwitch * pulse_source_switch_new (const gchar *name, const gchar *label, PulseSource *source) { + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (label != NULL, NULL); + g_return_val_if_fail (PULSE_IS_SOURCE (source), NULL); + return g_object_new (PULSE_TYPE_SOURCE_SWITCH, "name", name, "label", label, -- cgit v1.2.1