Merge pull request #6657 from sss123next/external_io_api_fixes

typo fix
This commit is contained in:
David Fort 2020-12-10 13:29:10 +01:00 committed by GitHub
commit 7eb3ff518a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -811,7 +811,7 @@ SSIZE_T transport_parse_pdu(rdpTransport* transport, wStream* s, BOOL* incomplet
return -1;
if (incomplete)
*incomplete = position >= pduLength;
*incomplete = position < pduLength;
return pduLength;
}