From 44956f98d73053a2265cb196e08327cff013676e Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 3 Jun 2009 18:23:53 +0300 Subject: [PATCH] pulsesink: check pointer before accessing Move existing check a few lines up, so that we check before accessing fields. --- ext/pulse/pulsesink.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c index acb006269d..36d5b1b1ef 100644 --- a/ext/pulse/pulsesink.c +++ b/ext/pulse/pulsesink.c @@ -1718,12 +1718,12 @@ gst_pulsesink_change_title (GstPulseSink * psink, const gchar * t) pbuf = GST_PULSERING_BUFFER_CAST (GST_BASE_AUDIO_SINK (psink)->ringbuffer); - g_free (pbuf->stream_name); - pbuf->stream_name = g_strdup (t); - if (pbuf == NULL || pbuf->stream == NULL) goto no_buffer; + g_free (pbuf->stream_name); + pbuf->stream_name = g_strdup (t); + if (!(o = pa_stream_set_name (pbuf->stream, pbuf->stream_name, NULL, NULL))) goto name_failed;