diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-09-02 15:38:59 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-09-02 15:38:59 +0700 |
commit | 832cad3b8a35616439317e334dcd617dc0a6a5b5 (patch) | |
tree | 0e6a84640bfc33ad482ad5814680fba97c6334fb /crypto | |
parent | Span-based variant of IBufferedCipher.ProcessByte (diff) | |
download | BouncyCastle.NET-ed25519-832cad3b8a35616439317e334dcd617dc0a6a5b5.tar.xz |
FIx return value for empty read
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/src/tls/TlsProtocol.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/tls/TlsProtocol.cs b/crypto/src/tls/TlsProtocol.cs index dbbb6e0f5..b5a955bed 100644 --- a/crypto/src/tls/TlsProtocol.cs +++ b/crypto/src/tls/TlsProtocol.cs @@ -717,7 +717,7 @@ namespace Org.BouncyCastle.Tls if (this.m_failedWithError) throw new IOException("Cannot read application data on failed TLS connection"); - return -1; + return 0; } /* |