From 08808f7f3236933ed3ecf9e8abddf5313fda4db2 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 24 Aug 2009 16:22:47 +0200 Subject: pulsesrc: don't discard the result of _set_caps() Use the result of gst_pad_set_caps() instead of assuming success. See #590678 --- ext/pulse/pulsesrc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ext') diff --git a/ext/pulse/pulsesrc.c b/ext/pulse/pulsesrc.c index 86864072..fa603454 100644 --- a/ext/pulse/pulsesrc.c +++ b/ext/pulse/pulsesrc.c @@ -926,8 +926,7 @@ gst_pulsesrc_negotiate (GstBaseSrc * basesrc) /* yay, fixed caps, use those then */ result = gst_pulsesrc_create_stream (GST_PULSESRC_CAST (basesrc), caps); if (result) - gst_pad_set_caps (GST_BASE_SRC_PAD (basesrc), caps); - result = TRUE; + result = gst_pad_set_caps (GST_BASE_SRC_PAD (basesrc), caps); } } gst_caps_unref (caps); -- cgit