Commit 3af7cc03 authored by Martin v. Löwis's avatar Martin v. Löwis

Fix off-by-one error in array size.

parent d852e46b
......@@ -779,7 +779,7 @@ static struct PyMethodDef xmlparse_methods[] = {
Make it as simple as possible.
*/
static char template_buffer[256];
static char template_buffer[257];
PyObject * template_string=NULL;
static void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment