Explorar el Código

fixed negative length for empty packages

release/3.x.x
Jan Eggers hace 6 años
padre
commit
5923c7c408
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      Source/MQTTnet/Serializer/MqttPacketWriter.cs

+ 1
- 1
Source/MQTTnet/Serializer/MqttPacketWriter.cs Ver fichero

@@ -99,7 +99,7 @@ namespace MQTTnet.Serializer

public void Reset()
{
Length = 0;
Length = 5;
}

public void Seek(int offset)


Cargando…
Cancelar
Guardar