[warnings] fixes Wunused-variable

This commit is contained in:
akallabeth 2023-11-24 09:47:32 +01:00 committed by akallabeth
parent 6b9245849c
commit c78e466be1
3 changed files with 1 additions and 3 deletions

View File

@ -524,7 +524,6 @@ static int rpc_channel_rpch_init(RpcClient* client, RpcChannel* channel, const c
if (guid)
{
char bracedguid[64] = { 0 };
char* strguid = NULL;
RPC_STATUS rpcStatus = UuidToStringA(guid, &strguid);

View File

@ -1526,7 +1526,6 @@ static BOOL tsg_ndr_read_caps_response(wLog* log, rdpContext* context, wStream*
{
UINT32 PacketQuarResponsePtr = 0;
UINT32 MessageSwitchValue = 0;
UINT32 SwitchValue = 0;
UINT32 MsgId = 0;
UINT32 MsgType = 0;
UINT32 IsMessagePresent = 0;

View File

@ -1345,7 +1345,7 @@ static BOOL nla_read_ts_credentials(rdpNla* nla, SecBuffer* data)
}
/* supplementalCreds [1] SEQUENCE OF TSRemoteGuardPackageCred OPTIONAL, */
MSV1_0_SUPPLEMENTAL_CREDENTIAL ntlmCreds;
MSV1_0_SUPPLEMENTAL_CREDENTIAL ntlmCreds = { 0 };
MSV1_0_SUPPLEMENTAL_CREDENTIAL* suppCreds = NULL;
WinPrAsn1Decoder suppCredsSeq = { 0 };