Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
Immanuel
/
nnn
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
Change scope to always check the correct return value
master
lostd
10 anos atrás
pai
3c45733f47
commit
0aefc2f496
1 arquivos alterados
com
9 adições
e
8 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+9
-8
noice.c
+ 9
- 8
noice.c
Ver arquivo
@@ -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)
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar