xrdpvr/xrdpvr.c: remove redundant condition

[xrdpvr/xrdpvr.c:918] -> [xrdpvr/xrdpvr.c:926]: (warning) Identical condition 'rv==0', second condition is always false
This commit is contained in:
Ilya Shipitsin 2019-12-27 19:02:28 +05:00
parent de5a23325f
commit 7c959156a9
1 changed files with 0 additions and 5 deletions

View File

@ -923,11 +923,6 @@ xrdpvr_write_to_client(void *channel, STREAM *s)
index += bytes_written;
bytes_to_send -= bytes_written;
if ((rv == 0) && (bytes_to_send == 0))
{
return 0;
}
usleep(1000 * 3);
}
}