Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Registro
Iniciar sesión
Compoment
/
MQTTnet
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Fix zero lenght packets bug
release/3.x.x
Israel Lot
hace 6 años
padre
786fa53334
commit
e006377e64
Se han
modificado 1 ficheros
con
2 adiciones
y
2 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+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];
Escribir
Vista previa
Cargando…
Cancelar
Guardar