VUL: if xrdp_sec_process_mcs_data_channels fails, xrdp_sec_process_mcs_data should fail

This commit is contained in:
Jay Sorg 2013-09-06 12:12:37 -07:00
parent bc6b29ae88
commit 04f121f214

View File

@ -804,7 +804,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;