Преглед изворни кода

Ensure that there is null terminator at the end of entitydefs.

tags/v0.2
Ben Kurtovic пре 12 година
родитељ
комит
a1e6dfcef6
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      mwparserfromhell/parser/tokenizer.c

+ 1
- 1
mwparserfromhell/parser/tokenizer.c Прегледај датотеку

@@ -1452,7 +1452,7 @@ init_tokenizer(void)
Py_DECREF(htmlentitydefs);

unsigned numdefs = (unsigned) PyDict_Size(defmap);
entitydefs = malloc(numdefs * sizeof(char*));
entitydefs = calloc(numdefs + 1, sizeof(char*));
PyObject* deflist = PyDict_Keys(defmap);
if (!deflist) return;
Py_DECREF(defmap);


Loading…
Откажи
Сачувај