Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Immanuel
/
btpd
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Merge pull request
#36
from brianmwaters/master
Accept bencoded dictionaries whose keys are not in alphabetical order. Closes GH-30 Closes GH-36
master
Marq Schneider
hace 12 años
padre
c550cbb435
382ccb7485
commit
c408419bd2
Se han
modificado 1 ficheros
con
1 adiciones
y
3 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-3
misc/benc.c
+ 1
- 3
misc/benc.c
Ver fichero
@@ -233,10 +233,8 @@ benc_dget_any(const char *p, const char *key)
cmp = strncmp(bstr, key, blen);
if (cmp == 0 && len == blen)
return p;
else if (cmp <= 0)
p = benc_next(p);
else
return NULL
;
p = benc_next(p);
}
return NULL;
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar