mpegts: Remove unneeded NULL check

Allocating those structures is done in all code paths leading there

CID #1219860
CID #1219861
CID #1219862
CID #1219863
CID #1219864
This commit is contained in:
Edward Hervey 2014-06-02 08:22:15 +02:00
parent 0eed275a51
commit a57005abbc

View file

@ -197,8 +197,7 @@ _parse_atsc_vct (GstMpegTsSection * section)
return (gpointer) vct;
error:
if (vct)
_gst_mpegts_atsc_vct_free (vct);
_gst_mpegts_atsc_vct_free (vct);
return NULL;
}
@ -366,8 +365,7 @@ _parse_atsc_mgt (GstMpegTsSection * section)
return (gpointer) mgt;
error:
if (mgt)
_gst_mpegts_atsc_mgt_free (mgt);
_gst_mpegts_atsc_mgt_free (mgt);
return NULL;
}
@ -710,8 +708,7 @@ _parse_atsc_eit (GstMpegTsSection * section)
return (gpointer) eit;
error:
if (eit)
_gst_mpegts_atsc_eit_free (eit);
_gst_mpegts_atsc_eit_free (eit);
return NULL;
@ -798,8 +795,7 @@ _parse_ett (GstMpegTsSection * section)
return (gpointer) ett;
error:
if (ett)
_gst_mpegts_atsc_ett_free (ett);
_gst_mpegts_atsc_ett_free (ett);
return NULL;
@ -888,8 +884,7 @@ _parse_atsc_stt (GstMpegTsSection * section)
return (gpointer) stt;
error:
if (stt)
_gst_mpegts_atsc_stt_free (stt);
_gst_mpegts_atsc_stt_free (stt);
return NULL;
}