Fixed broken strnlen checks
This commit is contained in:
parent
9e7c24668b
commit
8665ac7e81
@ -347,7 +347,7 @@ static BOOL wts_write_drdynvc_create_request(wStream* s, UINT32 ChannelId, const
|
||||
{
|
||||
size_t len;
|
||||
wts_write_drdynvc_header(s, CREATE_REQUEST_PDU, ChannelId);
|
||||
len = strnlen(ChannelName, CHANNEL_NAME_LEN) + 1;
|
||||
len = strlen(ChannelName) + 1;
|
||||
|
||||
if (!Stream_EnsureRemainingCapacity(s, len))
|
||||
return FALSE;
|
||||
|
Loading…
Reference in New Issue
Block a user