7375f9916a
CVE-2024-47543, CVE-2024-47544, CVE-2024-47545, CVE-2024-47546, CVE-2024-47596, CVE-2024-47597, CVE-2024-47598, CVE-2024-47599, CVE-2024-47601, CVE-2024-47602, CVE-2024-47603, CVE-2024-47606, CVE-2024-47613, CVE-2024-47774, CVE-2024-47775, CVE-2024-47776, CVE-2024-47777, CVE-2024-47778, CVE-2024-47834 Resolves: RHEL-70958, RHEL-70971, RHEL-71033, RHEL-71195 Resolves: RHEL-71210, RHEL-71202, RHEL-71171, RHEL-71200 Resolves: RHEL-71206, RHEL-71173, RHEL-71198, RHEL-71204 Resolves: RHEL-71208, RHEL-71031, RHEL-71007, RHEL-71039 Resolves: RHEL-71169, RHEL-71192, RHEL-71161, RHEL-71167 Resolves: RHEL-71189
45 lines
1.7 KiB
Diff
45 lines
1.7 KiB
Diff
From 8d97fde57e9ff1344624c34076fe08d8b845dcb9 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com>
|
|
Date: Mon, 30 Sep 2024 19:06:03 +0300
|
|
Subject: [PATCH 15/28] matroskademux: Skip over laces directly when
|
|
postprocessing the frame fails
|
|
|
|
Otherwise NULL buffers might be handled afterwards.
|
|
|
|
Thanks to Antonio Morales for finding and reporting the issue.
|
|
|
|
Fixes GHSL-2024-249
|
|
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3865
|
|
|
|
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8057>
|
|
---
|
|
.../gst-plugins-good/gst/matroska/matroska-demux.c | 12 ++++++++++++
|
|
1 file changed, 12 insertions(+)
|
|
|
|
diff --git a/subprojects/gst-plugins-good/gst/matroska/matroska-demux.c b/subprojects/gst-plugins-good/gst/matroska/matroska-demux.c
|
|
index 98ed51e86a..e0a4405dce 100644
|
|
--- a/subprojects/gst-plugins-good/gst/matroska/matroska-demux.c
|
|
+++ b/subprojects/gst-plugins-good/gst/matroska/matroska-demux.c
|
|
@@ -4982,6 +4982,18 @@ gst_matroska_demux_parse_blockgroup_or_simpleblock (GstMatroskaDemux * demux,
|
|
if (stream->postprocess_frame) {
|
|
GST_LOG_OBJECT (demux, "running post process");
|
|
ret = stream->postprocess_frame (GST_ELEMENT (demux), stream, &sub);
|
|
+ if (ret != GST_FLOW_OK) {
|
|
+ gst_clear_buffer (&sub);
|
|
+ goto next_lace;
|
|
+ }
|
|
+
|
|
+ if (sub == NULL) {
|
|
+ GST_WARNING_OBJECT (demux,
|
|
+ "Postprocessing buffer with timestamp %" GST_TIME_FORMAT
|
|
+ " for stream %d failed", GST_TIME_ARGS (buffer_timestamp),
|
|
+ stream_num);
|
|
+ goto next_lace;
|
|
+ }
|
|
}
|
|
|
|
/* At this point, we have a sub-buffer pointing at data within a larger
|
|
--
|
|
2.47.0
|
|
|