Explorar el Código

Fix zero lenght packets bug

release/3.x.x
Israel Lot hace 6 años
padre
commit
e006377e64
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      Frameworks/MQTTnet.NetStandard/Serializer/MqttPacketWriter.cs

+ 2
- 2
Frameworks/MQTTnet.NetStandard/Serializer/MqttPacketWriter.cs Ver fichero

@@ -58,9 +58,9 @@ namespace MQTTnet.Serializer

public static byte[] GetRemainingLength(int length)
{
if (length == 0)
if (length <= 0)
{
return new byte[] { (byte)0 };
return new [] { (byte)0 };
}

var bytes = new byte[4];


Cargando…
Cancelar
Guardar