Merge pull request #5711 from akallabeth/diff

Fixed broken strnlen checks
This commit is contained in:
Martin Fleisz 2019-11-11 13:23:00 +01:00 committed by GitHub
commit 8cf19fd94e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;