Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 603f5b79dc142626baed8df6b9abb23d390dfc4e Mon Sep 17 00:00:00 2001
|
|
From: akallabeth <akallabeth@posteo.net>
|
|
Date: Mon, 26 Jan 2026 10:14:08 +0100
|
|
Subject: [PATCH] [channels,audin] fix audin_server_recv_formats cleanup
|
|
|
|
(cherry picked from commit 1c5c74223179d425a1ce6dbbb6a3dd2a958b7aee)
|
|
|
|
CVE: CVE-2026-24682
|
|
Upstream-Status: Backport [https://github.com/FreeRDP/FreeRDP/commit/1c5c74223179d425a1ce6dbbb6a3dd2a958b7aee]
|
|
Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
|
|
---
|
|
channels/audin/server/audin.c | 6 +-----
|
|
1 file changed, 1 insertion(+), 5 deletions(-)
|
|
|
|
diff --git a/channels/audin/server/audin.c b/channels/audin/server/audin.c
|
|
index d67937ab7..f0bf96464 100644
|
|
--- a/channels/audin/server/audin.c
|
|
+++ b/channels/audin/server/audin.c
|
|
@@ -128,11 +128,7 @@ static UINT audin_server_recv_formats(audin_server_context* context, wStream* s,
|
|
AUDIO_FORMAT* format = &pdu.SoundFormats[i];
|
|
|
|
if (!audio_format_read(s, format))
|
|
- {
|
|
- WLog_Print(audin->log, WLOG_ERROR, "Failed to read audio format");
|
|
- audio_formats_free(pdu.SoundFormats, i + i);
|
|
- return ERROR_INVALID_DATA;
|
|
- }
|
|
+ goto fail;
|
|
|
|
audio_format_print(audin->log, WLOG_DEBUG, format);
|
|
}
|