mpegdemux: avoid some unlikely leaks

This commit is contained in:
Mark Nauwelaerts 2012-01-23 14:01:02 +01:00
parent c63be1402a
commit 552f991ba0
2 changed files with 13 additions and 3 deletions

View file

@ -399,8 +399,13 @@ gst_flups_demux_create_stream (GstFluPSDemux * demux, gint id, gint stream_type)
break;
}
if (name == NULL || template == NULL || caps == NULL)
return NULL;
if (name == NULL || template == NULL || caps == NULL) {
if (name)
g_free (name);
if (caps)
gst_caps_unref (caps);
return FALSE;
}
stream = g_new0 (GstFluPSStream, 1);
stream->id = id;

View file

@ -829,8 +829,13 @@ gst_mpegts_demux_fill_stream (GstMpegTSStream * stream, guint8 id,
default:
break;
}
if (name == NULL || template == NULL || caps == NULL)
if (name == NULL || template == NULL || caps == NULL) {
if (name)
g_free (name);
if (caps)
gst_caps_unref (caps);
return FALSE;
}
stream->stream_type = stream_type;
stream->id = id;