pulsesink: check pointer before accessing

Move existing check a few lines up, so that we check before accessing fields.
This commit is contained in:
Stefan Kost 2009-06-03 18:23:53 +03:00
parent f77650c024
commit 44956f98d7

View file

@ -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;