mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Fix off-by-one error in array size.
This commit is contained in:
parent
d852e46be4
commit
3af7cc034c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue