mirror of https://github.com/FreeRDP/FreeRDP
Merge pull request #3584 from awakecoding/master
Fix issue #3422, ignore some dynamic virtual channel messages with invalid ids
This commit is contained in:
commit
2ceab378f3
|
@ -611,8 +611,12 @@ static UINT dvcman_receive_channel_data_first(IWTSVirtualChannelManager*
|
|||
|
||||
if (!channel)
|
||||
{
|
||||
/**
|
||||
* Windows Server 2012 R2 can send some messages over Microsoft::Windows::RDS::Geometry::v08.01
|
||||
* even if the dynamic virtual channel wasn't registered on our side. Ignoring it works.
|
||||
*/
|
||||
WLog_ERR(TAG, "ChannelId %d not found!", ChannelId);
|
||||
return ERROR_INTERNAL_ERROR;
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
if (channel->dvc_data)
|
||||
|
|
Loading…
Reference in New Issue