Explorar el Código

Change scope to always check the correct return value

master
lostd hace 10 años
padre
commit
0aefc2f496
Se han modificado 1 ficheros con 9 adiciones y 8 borrados
  1. +9
    -8
      noice.c

+ 9
- 8
noice.c Ver fichero

@@ -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)


Cargando…
Cancelar
Guardar