mirror of https://github.com/FreeRDP/FreeRDP
[server,proxy] fix unchecked return
This commit is contained in:
parent
8a3f2be769
commit
f1be630637
|
@ -1764,7 +1764,7 @@ static void pf_channel_rdpdr_server_context_free(InterceptContextMapEntry* base)
|
|||
if (!entry)
|
||||
return;
|
||||
|
||||
WTSVirtualChannelClose(entry->handle);
|
||||
(void)WTSVirtualChannelClose(entry->handle);
|
||||
pf_channel_rdpdr_common_context_free(&entry->common);
|
||||
ArrayList_Free(entry->blockedDevices);
|
||||
free(entry);
|
||||
|
|
Loading…
Reference in New Issue