+ freerdp-CVE-2026-22852.patch (CVE-2026-22852, bsc#1256718) + freerdp-CVE-2026-22854.patch (CVE-2026-22854, bsc#1256720) + freerdp-CVE-2026-22856.patch (CVE-2026-22856, bsc#1256722) + freerdp-CVE-2026-22859.patch (CVE-2026-22859, bsc#1256725) + freerdp-CVE-2026-23530.patch (CVE-2026-23530, bsc#1256940) + freerdp-CVE-2026-23531.patch (CVE-2026-23531, bsc#1256941) + freerdp-CVE-2026-23532.patch (CVE-2026-23532, bsc#1256942) + freerdp-CVE-2026-23534.patch (CVE-2026-23534, bsc#1256944) * Fix integer overflow in progressive decoder (bsc#1219049, CVE-2024-22211) OBS-URL: https://build.opensuse.org/package/show/X11:RemoteDesktop/freerdp2?expand=0&rev=21
24 lines
880 B
Diff
24 lines
880 B
Diff
From 3da319570c8a6be0a79b3306f1ed354c4a943259 Mon Sep 17 00:00:00 2001
|
|
From: akallabeth <akallabeth@posteo.net>
|
|
Date: Mon, 12 Jan 2026 03:44:06 +0100
|
|
Subject: [PATCH] [channels,drive] fix constant type
|
|
|
|
ensure constant is of 64bit integer type
|
|
---
|
|
channels/drive/client/drive_main.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/channels/drive/client/drive_main.c b/channels/drive/client/drive_main.c
|
|
index 1dce5c348a61..13188fbc6427 100644
|
|
--- a/channels/drive/client/drive_main.c
|
|
+++ b/channels/drive/client/drive_main.c
|
|
@@ -302,7 +302,7 @@ static UINT drive_process_irp_read(DRIVE_DEVICE* drive, IRP* irp)
|
|
Length = 0;
|
|
}
|
|
|
|
- if (!Stream_EnsureRemainingCapacity(irp->output, Length + 4))
|
|
+ if (!Stream_EnsureRemainingCapacity(irp->output, 4ull + Length))
|
|
{
|
|
WLog_ERR(TAG, "Stream_EnsureRemainingCapacity failed!");
|
|
return ERROR_INTERNAL_ERROR;
|