Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Immanuel
/
btpd
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Accept invalid .torrent files.
Accept .torrent files whose bencoded dictionaries are not in alphabetical order.
master
Brian M. Waters
13 anni fa
parent
c550cbb435
commit
382ccb7485
1 ha cambiato i file
con
1 aggiunte
e
3 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
misc/benc.c
+ 1
- 3
misc/benc.c
Vedi File
@@ -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;
}
Write
Preview
Loading…
Annulla
Salva