|
|
4cd190 |
From 403402607214092d20277af3aa959ce87768580a Mon Sep 17 00:00:00 2001
|
|
|
4cd190 |
From: akallabeth <akallabeth@posteo.net>
|
|
|
4cd190 |
Date: Fri, 12 Nov 2021 16:01:39 +0100
|
|
|
4cd190 |
Subject: [PATCH] Fixed #7436: Datatype mismatch
|
|
|
4cd190 |
|
|
|
4cd190 |
---
|
|
|
4cd190 |
libfreerdp/core/gateway/ncacn_http.c | 4 ++--
|
|
|
4cd190 |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
4cd190 |
|
|
|
4cd190 |
diff --git a/libfreerdp/core/gateway/ncacn_http.c b/libfreerdp/core/gateway/ncacn_http.c
|
|
|
4cd190 |
index f288a0f3c..75da83d62 100644
|
|
|
4cd190 |
--- a/libfreerdp/core/gateway/ncacn_http.c
|
|
|
4cd190 |
+++ b/libfreerdp/core/gateway/ncacn_http.c
|
|
|
4cd190 |
@@ -105,7 +105,7 @@ BOOL rpc_ncacn_http_send_in_channel_request(RpcChannel* inChannel)
|
|
|
4cd190 |
BOOL rpc_ncacn_http_recv_in_channel_response(RpcChannel* inChannel, HttpResponse* response)
|
|
|
4cd190 |
{
|
|
|
4cd190 |
const char* token64 = NULL;
|
|
|
4cd190 |
- size_t ntlmTokenLength = 0;
|
|
|
4cd190 |
+ int ntlmTokenLength = 0;
|
|
|
4cd190 |
BYTE* ntlmTokenData = NULL;
|
|
|
4cd190 |
rdpNtlm* ntlm;
|
|
|
4cd190 |
|
|
|
4cd190 |
@@ -259,7 +259,7 @@ BOOL rpc_ncacn_http_send_out_channel_request(RpcChannel* outChannel, BOOL replac
|
|
|
4cd190 |
BOOL rpc_ncacn_http_recv_out_channel_response(RpcChannel* outChannel, HttpResponse* response)
|
|
|
4cd190 |
{
|
|
|
4cd190 |
const char* token64 = NULL;
|
|
|
4cd190 |
- size_t ntlmTokenLength = 0;
|
|
|
4cd190 |
+ int ntlmTokenLength = 0;
|
|
|
4cd190 |
BYTE* ntlmTokenData = NULL;
|
|
|
4cd190 |
rdpNtlm* ntlm;
|
|
|
4cd190 |
|
|
|
4cd190 |
--
|
|
|
4cd190 |
2.33.1
|
|
|
4cd190 |
|