Merge pull request #1464 from chipitsine/devel

xrdpvr/xrdpvr.c: remove redundant condition
This commit is contained in:
metalefty 2020-01-06 12:35:04 +09:00 committed by GitHub
commit 677056e3c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}
}