Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Immanuel
/
nnn
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Change scope to always check the correct return value
master
lostd
10 anni fa
parent
3c45733f47
commit
0aefc2f496
1 ha cambiato i file
con
9 aggiunte
e
8 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-8
noice.c
+ 9
- 8
noice.c
Vedi File
@@ -748,15 +748,16 @@ moretyping:
if (r == 1)
nowtyping = 0;
/* Check regex errors */
if (tmp != NULL)
if (tmp != NULL)
{
r = setfilter(&re, tmp);
if (r != 0)
if (nowtyping) {
goto moretyping;
} else {
free(tmp);
goto nochange;
}
if (r != 0)
if (nowtyping) {
goto moretyping;
} else {
free(tmp);
goto nochange;
}
}
/* Copy or reset filter */
free(filter);
if (tmp != NULL)
Write
Preview
Loading…
Annulla
Salva