Ver código fonte

fixed negative length for empty packages

release/3.x.x
Jan Eggers 6 anos atrás
pai
commit
5923c7c408
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      Source/MQTTnet/Serializer/MqttPacketWriter.cs

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

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

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

public void Seek(int offset)


Carregando…
Cancelar
Salvar