Sfoglia il codice sorgente

Make fallthrough explicit in tok_parse.c

In response to #325
pull/326/head
Richard Barnes 4 mesi fa
committed by GitHub
parent
commit
4fc3bfdfc5
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: B5690EEEBB952194
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. +3
    -0
      src/mwparserfromhell/parser/ctokenizer/tok_parse.c

+ 3
- 0
src/mwparserfromhell/parser/ctokenizer/tok_parse.c Vedi File

@@ -1558,6 +1558,9 @@ Tokenizer_handle_tag_close_close(Tokenizer *self)
Py_XDECREF(so);
Py_XDECREF(sc);
}
// 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;


Caricamento…
Annulla
Salva