summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorAnkur Tyagi <ankur.tyagi85@gmail.com>2026-04-09 19:09:04 +1200
committerAnuj Mittal <anuj.mittal@oss.qualcomm.com>2026-04-13 12:40:21 +0530
commit8cc0cd3debe6f1b7fcba5d82cbddba00c242c52a (patch)
treea912289f19ca3e50523d560e9dcee700f9bb8730 /meta-oe
parent4784f85b0974704c5e8216d2a6acef7c14b4f08b (diff)
downloadmeta-openembedded-8cc0cd3debe6f1b7fcba5d82cbddba00c242c52a.tar.gz
freerdp3: fix CVE-2026-24676
Details: https://nvd.nist.gov/vuln/detail/CVE-2026-24676 Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-support/freerdp/freerdp3/CVE-2026-24676.patch34
-rw-r--r--meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb1
2 files changed, 35 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/freerdp/freerdp3/CVE-2026-24676.patch b/meta-oe/recipes-support/freerdp/freerdp3/CVE-2026-24676.patch
new file mode 100644
index 0000000000..30ca1c8a6c
--- /dev/null
+++ b/meta-oe/recipes-support/freerdp/freerdp3/CVE-2026-24676.patch
@@ -0,0 +1,34 @@
1From 0a2248a4adbee77122270062bebe00143d3ee96a Mon Sep 17 00:00:00 2001
2From: akallabeth <akallabeth@posteo.net>
3Date: Mon, 26 Jan 2026 10:20:23 +0100
4Subject: [PATCH] [channels,audin] reset audin->format
5
6Whenever the underlying structure changes reset the pointer to NULL
7
8CVE: CVE-2026-24676
9Upstream-Status: Backport [https://github.com/FreeRDP/FreeRDP/commit/026b81ae5831ac1598d8f7371e0d0996fac7db00]
10Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
11---
12 channels/audin/client/audin_main.c | 2 ++
13 1 file changed, 2 insertions(+)
14
15diff --git a/channels/audin/client/audin_main.c b/channels/audin/client/audin_main.c
16index 1578d26ac..2c91d9f60 100644
17--- a/channels/audin/client/audin_main.c
18+++ b/channels/audin/client/audin_main.c
19@@ -206,6 +206,7 @@ static UINT audin_process_formats(AUDIN_PLUGIN* audin, AUDIN_CHANNEL_CALLBACK* c
20 }
21
22 Stream_Seek_UINT32(s); /* cbSizeFormatsPacket */
23+ audin->format = NULL;
24 callback->formats = audio_formats_new(NumFormats);
25
26 if (!callback->formats)
27@@ -280,6 +281,7 @@ out:
28
29 if (error != CHANNEL_RC_OK)
30 {
31+ audin->format = NULL;
32 audio_formats_free(callback->formats, NumFormats);
33 callback->formats = NULL;
34 }
diff --git a/meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb b/meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb
index c83d82b357..5f0a2536ae 100644
--- a/meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb
+++ b/meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb
@@ -25,6 +25,7 @@ SRC_URI = "git://github.com/FreeRDP/FreeRDP.git;branch=master;protocol=https \
25 file://CVE-2026-23948.patch \ 25 file://CVE-2026-23948.patch \
26 file://CVE-2026-24491.patch \ 26 file://CVE-2026-24491.patch \
27 file://CVE-2026-24675.patch \ 27 file://CVE-2026-24675.patch \
28 file://CVE-2026-24676.patch \
28 " 29 "
29 30
30S = "${WORKDIR}/git" 31S = "${WORKDIR}/git"