diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-01 15:09:08 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-01 15:09:08 +0000 |
commit | 0b1f438f59e230389519ba100f28b896df14e08b (patch) | |
tree | 22651934332deb73602326a03ddb24bffa8d18fc /Fixed-7436-Datatype-mismatch.patch | |
parent | 5c96aee787beb29707ea3203fcef7f3b3b637153 (diff) |
automatic import of freerdpopeneuler24.03_LTSopeneuler23.09
Diffstat (limited to 'Fixed-7436-Datatype-mismatch.patch')
-rw-r--r-- | Fixed-7436-Datatype-mismatch.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Fixed-7436-Datatype-mismatch.patch b/Fixed-7436-Datatype-mismatch.patch new file mode 100644 index 0000000..22c3987 --- /dev/null +++ b/Fixed-7436-Datatype-mismatch.patch @@ -0,0 +1,34 @@ +From 403402607214092d20277af3aa959ce87768580a Mon Sep 17 00:00:00 2001 +From: akallabeth <akallabeth@posteo.net> +Date: Fri, 12 Nov 2021 16:01:39 +0100 +Subject: [PATCH] Fixed #7436: Datatype mismatch + +--- + libfreerdp/core/gateway/ncacn_http.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/libfreerdp/core/gateway/ncacn_http.c b/libfreerdp/core/gateway/ncacn_http.c +index f288a0f3c..75da83d62 100644 +--- a/libfreerdp/core/gateway/ncacn_http.c ++++ b/libfreerdp/core/gateway/ncacn_http.c +@@ -105,7 +105,7 @@ BOOL rpc_ncacn_http_send_in_channel_request(RpcChannel* inChannel) + BOOL rpc_ncacn_http_recv_in_channel_response(RpcChannel* inChannel, HttpResponse* response) + { + const char* token64 = NULL; +- size_t ntlmTokenLength = 0; ++ int ntlmTokenLength = 0; + BYTE* ntlmTokenData = NULL; + rdpNtlm* ntlm; + +@@ -259,7 +259,7 @@ BOOL rpc_ncacn_http_send_out_channel_request(RpcChannel* outChannel, BOOL replac + BOOL rpc_ncacn_http_recv_out_channel_response(RpcChannel* outChannel, HttpResponse* response) + { + const char* token64 = NULL; +- size_t ntlmTokenLength = 0; ++ int ntlmTokenLength = 0; + BYTE* ntlmTokenData = NULL; + rdpNtlm* ntlm; + +-- +2.33.1 + |