mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
qtdemux: plug leaks in cenc aux info parsing
This commit is contained in:
parent
8e2c1d1de5
commit
52b16768a2
1 changed files with 2 additions and 0 deletions
|
@ -3279,6 +3279,7 @@ qtdemux_parse_cenc_aux_info (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
||||||
}
|
}
|
||||||
buf = gst_buffer_new_wrapped (data, iv_size);
|
buf = gst_buffer_new_wrapped (data, iv_size);
|
||||||
gst_structure_set (properties, "iv", GST_TYPE_BUFFER, buf, NULL);
|
gst_structure_set (properties, "iv", GST_TYPE_BUFFER, buf, NULL);
|
||||||
|
gst_buffer_unref (buf);
|
||||||
size = info_sizes[i];
|
size = info_sizes[i];
|
||||||
if (size > iv_size) {
|
if (size > iv_size) {
|
||||||
if (!gst_byte_reader_get_uint16_be (br, &n_subsamples)
|
if (!gst_byte_reader_get_uint16_be (br, &n_subsamples)
|
||||||
|
@ -3303,6 +3304,7 @@ qtdemux_parse_cenc_aux_info (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
||||||
gst_structure_set (properties,
|
gst_structure_set (properties,
|
||||||
"subsample_count", G_TYPE_UINT, n_subsamples,
|
"subsample_count", G_TYPE_UINT, n_subsamples,
|
||||||
"subsamples", GST_TYPE_BUFFER, buf, NULL);
|
"subsamples", GST_TYPE_BUFFER, buf, NULL);
|
||||||
|
gst_buffer_unref (buf);
|
||||||
} else {
|
} else {
|
||||||
gst_structure_set (properties, "subsample_count", G_TYPE_UINT, 0, NULL);
|
gst_structure_set (properties, "subsample_count", G_TYPE_UINT, 0, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue