Bläddra i källkod

Fix memory leak when SSL is not working properly.

release/3.x.x
Christian Kratky 5 år sedan
förälder
incheckning
975eb60e90
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. +2
    -2
      Source/MQTTnet/Implementations/MqttTcpChannel.cs

+ 2
- 2
Source/MQTTnet/Implementations/MqttTcpChannel.cs Visa fil

@@ -84,9 +84,9 @@ namespace MQTTnet.Implementations
if (_options.TlsOptions.UseTls)
{
var sslStream = new SslStream(networkStream, false, InternalUserCertificateValidationCallback);
await sslStream.AuthenticateAsClientAsync(_options.Server, LoadCertificates(), _options.TlsOptions.SslProtocol, _options.TlsOptions.IgnoreCertificateRevocationErrors).ConfigureAwait(false);

_stream = sslStream;

await sslStream.AuthenticateAsClientAsync(_options.Server, LoadCertificates(), _options.TlsOptions.SslProtocol, _options.TlsOptions.IgnoreCertificateRevocationErrors).ConfigureAwait(false);
}
else
{


Laddar…
Avbryt
Spara