mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2024-11-24 18:33:52 +08:00
Fixed userdata pointer and CHANNEL_EVENT_WRITE_CANCELLED message.
This commit is contained in:
parent
1bcb799560
commit
75ed12f1f0
@ -875,7 +875,7 @@ static VOID VCAPITYPE cliprdr_virtual_channel_open_event_ex(LPVOID lpUserParam,
|
||||
case CHANNEL_EVENT_WRITE_CANCELLED:
|
||||
case CHANNEL_EVENT_WRITE_COMPLETE:
|
||||
{
|
||||
wStream* s = (wStream*)lpUserParam;
|
||||
wStream* s = (wStream*)pData;
|
||||
Stream_Free(s, TRUE);
|
||||
}
|
||||
break;
|
||||
|
@ -1274,7 +1274,7 @@ static void VCAPITYPE drdynvc_virtual_channel_open_event_ex(LPVOID lpUserParam,
|
||||
case CHANNEL_EVENT_WRITE_CANCELLED:
|
||||
case CHANNEL_EVENT_WRITE_COMPLETE:
|
||||
{
|
||||
wStream* s = (wStream*)lpUserParam;
|
||||
wStream* s = (wStream*)pData;
|
||||
Stream_Free(s, TRUE);
|
||||
}
|
||||
break;
|
||||
|
@ -1005,7 +1005,7 @@ static VOID VCAPITYPE encomsp_virtual_channel_open_event_ex(LPVOID lpUserParam,
|
||||
case CHANNEL_EVENT_WRITE_CANCELLED:
|
||||
case CHANNEL_EVENT_WRITE_COMPLETE:
|
||||
{
|
||||
wStream* s = (wStream*)lpUserParam;
|
||||
wStream* s = (wStream*)pData;
|
||||
Stream_Free(s, TRUE);
|
||||
}
|
||||
break;
|
||||
|
@ -708,7 +708,7 @@ static VOID VCAPITYPE rail_virtual_channel_open_event_ex(LPVOID lpUserParam, DWO
|
||||
case CHANNEL_EVENT_WRITE_CANCELLED:
|
||||
case CHANNEL_EVENT_WRITE_COMPLETE:
|
||||
{
|
||||
wStream* s = (wStream*)lpUserParam;
|
||||
wStream* s = (wStream*)pData;
|
||||
Stream_Free(s, TRUE);
|
||||
}
|
||||
break;
|
||||
|
@ -233,11 +233,11 @@ static void VCAPITYPE VirtualChannelOpenEventEx(LPVOID lpUserParam, DWORD openHa
|
||||
break;
|
||||
|
||||
case CHANNEL_EVENT_WRITE_CANCELLED:
|
||||
free(lpUserParam);
|
||||
free(pData);
|
||||
break;
|
||||
case CHANNEL_EVENT_WRITE_COMPLETE:
|
||||
SetEvent(plugin->writeComplete);
|
||||
free(lpUserParam);
|
||||
free(pData);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -1590,7 +1590,7 @@ static VOID VCAPITYPE rdpdr_virtual_channel_open_event_ex(LPVOID lpUserParam, DW
|
||||
case CHANNEL_EVENT_WRITE_CANCELLED:
|
||||
case CHANNEL_EVENT_WRITE_COMPLETE:
|
||||
{
|
||||
wStream* s = (wStream*)lpUserParam;
|
||||
wStream* s = (wStream*)pData;
|
||||
Stream_Free(s, TRUE);
|
||||
}
|
||||
break;
|
||||
|
@ -993,7 +993,7 @@ static VOID VCAPITYPE rdpsnd_virtual_channel_open_event_ex(LPVOID lpUserParam, D
|
||||
case CHANNEL_EVENT_WRITE_CANCELLED:
|
||||
case CHANNEL_EVENT_WRITE_COMPLETE:
|
||||
{
|
||||
wStream* s = (wStream*)lpUserParam;
|
||||
wStream* s = (wStream*)pData;
|
||||
Stream_Free(s, TRUE);
|
||||
}
|
||||
break;
|
||||
|
@ -86,13 +86,13 @@ static void channel_queue_message_free(wMessage* msg)
|
||||
return;
|
||||
|
||||
ev = (CHANNEL_OPEN_EVENT*)msg->wParam;
|
||||
freerdp_channels_process_message_free(msg, CHANNEL_EVENT_WRITE_CANCELLED);
|
||||
free(ev);
|
||||
}
|
||||
|
||||
static void channel_queue_free(void* obj)
|
||||
{
|
||||
wMessage* msg = (wMessage*)obj;
|
||||
freerdp_channels_process_message_free(msg, CHANNEL_EVENT_WRITE_CANCELLED);
|
||||
channel_queue_message_free(msg);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user