[server,proxy] fix unchecked return

This commit is contained in:
akallabeth 2024-09-15 07:26:33 +02:00
parent 8a3f2be769
commit f1be630637
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5
1 changed files with 1 additions and 1 deletions

View File

@ -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);