36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
|
From b00c5d91c629e1b6fbc35e14f658dc38d49e1306 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com>
|
||
|
Date: Mon, 30 Sep 2024 19:19:42 +0300
|
||
|
Subject: [PATCH 16/28] matroskademux: Skip over zero-sized Xiph stream headers
|
||
|
|
||
|
Thanks to Antonio Morales for finding and reporting the issue.
|
||
|
|
||
|
Fixes GHSL-2024-251
|
||
|
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3867
|
||
|
|
||
|
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8057>
|
||
|
---
|
||
|
subprojects/gst-plugins-good/gst/matroska/matroska-ids.c | 6 ++++--
|
||
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/subprojects/gst-plugins-good/gst/matroska/matroska-ids.c b/subprojects/gst-plugins-good/gst/matroska/matroska-ids.c
|
||
|
index f11b7c2ce3..ba645f7306 100644
|
||
|
--- a/subprojects/gst-plugins-good/gst/matroska/matroska-ids.c
|
||
|
+++ b/subprojects/gst-plugins-good/gst/matroska/matroska-ids.c
|
||
|
@@ -189,8 +189,10 @@ gst_matroska_parse_xiph_stream_headers (gpointer codec_data,
|
||
|
if (offset + length[i] > codec_data_size)
|
||
|
goto error;
|
||
|
|
||
|
- hdr = gst_buffer_new_memdup (p + offset, length[i]);
|
||
|
- gst_buffer_list_add (list, hdr);
|
||
|
+ if (length[i] > 0) {
|
||
|
+ hdr = gst_buffer_new_memdup (p + offset, length[i]);
|
||
|
+ gst_buffer_list_add (list, hdr);
|
||
|
+ }
|
||
|
|
||
|
offset += length[i];
|
||
|
}
|
||
|
--
|
||
|
2.47.0
|
||
|
|