server: proxy: removed unnecessary cast after #5955

This commit is contained in:
Kobi Mizrachi 2020-03-12 08:42:13 +02:00 committed by akallabeth
parent 73445e1462
commit 1484d0ac48
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ static BOOL pf_client_receive_channel_data_hook(freerdp* instance, UINT16 channe
ev.channel_id = channelId;
ev.channel_name = channel_name;
ev.data = (const BYTE*)data;
ev.data = data;
ev.data_len = size;
if (!pf_modules_run_filter(FILTER_TYPE_CLIENT_PASSTHROUGH_CHANNEL_DATA, pdata, &ev))