diff options
author | Matthias Klose <doko@ubuntu.com> | 2009-04-04 14:32:42 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2009-04-04 14:32:42 (GMT) |
commit | 042f133d8299d5a2222def66fd125cde16437cd8 (patch) | |
tree | 55af530db293933f03c7c012f6bcbae4b4b0dce9 /Python | |
parent | 11446485433ad65111d6a10f716833c2455da5d1 (diff) | |
download | cpython-042f133d8299d5a2222def66fd125cde16437cd8.zip cpython-042f133d8299d5a2222def66fd125cde16437cd8.tar.gz cpython-042f133d8299d5a2222def66fd125cde16437cd8.tar.bz2 |
Merged revisions 71152 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71152 | matthias.klose | 2009-04-04 16:18:13 +0200 (Sa, 04 Apr 2009) | 3 lines
- Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with
short file names.
........
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 9159b4c..f93403b 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1145,7 +1145,7 @@ PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, { PyObject *m, *d, *v; const char *ext; - int set_file_name = 0, ret; + int set_file_name = 0, ret, len; m = PyImport_AddModule("__main__"); if (m == NULL) @@ -1163,7 +1163,8 @@ PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, set_file_name = 1; Py_DECREF(f); } - ext = filename + strlen(filename) - 4; + len = strlen(filename); + ext = filename + len - (len > 4 ? 4 : 0); if (maybe_pyc_file(fp, filename, ext, closeit)) { /* Try to run a pyc file. First, re-open in binary */ if (closeit) |