Explorar el Código

Update tok_parse.c

pull/326/head
Richard Barnes hace 4 meses
committed by GitHub
padre
commit
8c23031f10
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: B5690EEEBB952194
Se han modificado 1 ficheros con 4 adiciones y 3 borrados
  1. +4
    -3
      src/mwparserfromhell/parser/ctokenizer/tok_parse.c

+ 4
- 3
src/mwparserfromhell/parser/ctokenizer/tok_parse.c Ver fichero

@@ -1557,10 +1557,11 @@ Tokenizer_handle_tag_close_close(Tokenizer *self)
}
Py_XDECREF(so);
Py_XDECREF(sc);
// One of `so` or `sc` failed to allocate so we clean up the
// closing tag and propagate the error by returning NULL.
Py_DECREF(closing);
return NULL;
}
// One of `so` or `sc` failed to allocate so we fall through to clean up the
// closing tag and propagate the error by returning NULL.
__attribute__((fallthrough));
case -1:
Py_DECREF(closing);
return NULL;


Cargando…
Cancelar
Guardar