mirror of https://github.com/neutrinolabs/xrdp
VUL: if xrdp_sec_process_mcs_data_channels fails, xrdp_sec_process_mcs_data should fail
This commit is contained in:
parent
a1ae000589
commit
31c5a30a9b
|
@ -908,7 +908,10 @@ xrdp_sec_process_mcs_data(struct xrdp_sec *self)
|
|||
case SEC_TAG_CLI_CRYPT:
|
||||
break;
|
||||
case SEC_TAG_CLI_CHANNELS:
|
||||
xrdp_sec_process_mcs_data_channels(self, s);
|
||||
if (xrdp_sec_process_mcs_data_channels(self, s) != 0)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
break;
|
||||
case SEC_TAG_CLI_4:
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue