mirror of https://github.com/FreeRDP/FreeRDP
Merge pull request #3950 from hypherion2/cp_fixes
Fix handle leaks in encomsp and remdesk server
This commit is contained in:
commit
3944139c20
|
@ -338,6 +338,7 @@ static UINT encomsp_server_stop(EncomspServerContext* context)
|
|||
}
|
||||
|
||||
CloseHandle(context->priv->Thread);
|
||||
CloseHandle(context->priv->StopEvent);
|
||||
return error;
|
||||
}
|
||||
|
||||
|
@ -368,6 +369,9 @@ void encomsp_server_context_free(EncomspServerContext* context)
|
|||
{
|
||||
if (context)
|
||||
{
|
||||
if (context->priv->ChannelHandle != INVALID_HANDLE_VALUE)
|
||||
WTSVirtualChannelClose(context->priv->ChannelHandle);
|
||||
|
||||
free(context->priv);
|
||||
free(context);
|
||||
}
|
||||
|
|
|
@ -756,6 +756,7 @@ static UINT remdesk_server_stop(RemdeskServerContext* context)
|
|||
}
|
||||
|
||||
CloseHandle(context->priv->Thread);
|
||||
CloseHandle(context->priv->StopEvent);
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
|
@ -787,6 +788,9 @@ void remdesk_server_context_free(RemdeskServerContext* context)
|
|||
{
|
||||
if (context)
|
||||
{
|
||||
if (context->priv->ChannelHandle != INVALID_HANDLE_VALUE)
|
||||
WTSVirtualChannelClose(context->priv->ChannelHandle);
|
||||
|
||||
free(context->priv);
|
||||
free(context);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue