Fixed wrong error return from drdynvc_write_data

When the channel was closed a wrong error code was returned.
This commit is contained in:
akallabeth 2020-05-08 09:37:19 +02:00
parent 37344f443e
commit c31eb24bae

View File

@ -815,7 +815,7 @@ static UINT drdynvc_write_data(drdynvcPlugin* drdynvc, UINT32 ChannelId, const B
if (dataSize == 0)
{
dvcman_close_channel(drdynvc->channel_mgr, ChannelId, TRUE);
status = dvcman_close_channel(drdynvc->channel_mgr, ChannelId, TRUE);
}
else if (dataSize <= CHANNEL_CHUNK_LENGTH - pos)
{