Explorar el Código

Fix C tokenizer leaking memory.

tags/v0.4.1
Ben Kurtovic hace 9 años
padre
commit
40fed91806
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      mwparserfromhell/parser/ctokenizer/tok_parse.c

+ 1
- 1
mwparserfromhell/parser/ctokenizer/tok_parse.c Ver fichero

@@ -1420,7 +1420,7 @@ static PyObject* Tokenizer_handle_blacklisted_tag(Tokenizer* self)
buffer = Textbuffer_new();
if (!buffer)
return NULL;
while ((this = Tokenizer_READ(self, 0))) {
while ((this = Tokenizer_READ(self, 0)), 1) {
if (this == '>') {
buf_tmp = Textbuffer_render(buffer);
if (!buf_tmp)


Cargando…
Cancelar
Guardar