diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 9de46a9c491..785653ede0a 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1031,7 +1031,7 @@ _PySys_Init(void) PyObject *sysin, *sysout, *syserr; char *s; #ifdef MS_WINDOWS - char buf[13]; + char buf[128]; #endif m = Py_InitModule3("sys", sys_methods, sys_doc);