VUL: fix some possible buffer overruns

This commit is contained in:
Jay Sorg 2013-09-10 16:02:35 -07:00
parent 39ed446e15
commit 369b090e38
1 changed files with 6 additions and 0 deletions

View File

@ -385,6 +385,12 @@ xrdp_mcs_recv_connect_initial(struct xrdp_mcs *self)
return 1;
}
if (!s_check_rem(s, len))
{
free_stream(s);
return 1;
}
/* make a copy of client mcs data */
init_stream(self->client_mcs_data, len);
out_uint8a(self->client_mcs_data, s->p, len);