| commit | d4c0a9c59b399bfa0d36030663f78aa18a68e051 | [log] [tgz] |
|---|---|---|
| author | Marc-André Lemburg <mal@egenix.com> | Wed Nov 28 11:47:00 2001 +0000 |
| committer | Marc-André Lemburg <mal@egenix.com> | Wed Nov 28 11:47:00 2001 +0000 |
| tree | 86bc79d1907b7ca06135eaf0921dbfe11d8451ab | |
| parent | 5107b4cf5fa4d748bab4022531e6c5741f31e196 [diff] [blame] |
Fixes for possible buffer overflows in sprintf() usages.
diff --git a/Python/dynload_win.c b/Python/dynload_win.c index a5a65cf..155a9d6 100644 --- a/Python/dynload_win.c +++ b/Python/dynload_win.c
@@ -232,7 +232,7 @@ if (import_python && strcasecmp(buffer,import_python)) { sprintf(buffer, - "Module use of %s conflicts " + "Module use of %.150s conflicts " "with this version of Python.", import_python); PyErr_SetString(PyExc_ImportError,buffer);