summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-09-29 10:28:51 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-09-29 10:28:51 (GMT)
commit255dfdb5ce5b93240a1edd724e1c7a479862ef7d (patch)
treec5dd6cfdef937a080d5600aa888d01a6d5e39afc /Python
parent137c34c0274954b2cdd1fd5b490c654528ff30f7 (diff)
downloadcpython-255dfdb5ce5b93240a1edd724e1c7a479862ef7d.zip
cpython-255dfdb5ce5b93240a1edd724e1c7a479862ef7d.tar.gz
cpython-255dfdb5ce5b93240a1edd724e1c7a479862ef7d.tar.bz2
Issue #9979: Use PyUnicode_AsWideCharString() in import.c
Don't truncate path if it is too long anymore, and allocate fewer memory (but allocate it on the heap, not on the stack).
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c34
1 files changed, 16 insertions, 18 deletions
diff --git a/Python/import.c b/Python/import.c
index 3078734..b708f27 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -1961,21 +1961,21 @@ FILE*
_Py_fopen(PyObject *unicode, const char *mode)
{
#ifdef MS_WINDOWS
- wchar_t path[MAXPATHLEN+1];
+ wchar_t *path;
wchar_t wmode[10];
- Py_ssize_t len;
int usize;
-
- len = PyUnicode_AsWideChar((PyUnicodeObject*)unicode, path, MAXPATHLEN);
- if (len == -1)
- return NULL;
- path[len] = L'\0';
+ FILE *f;
usize = MultiByteToWideChar(CP_ACP, 0, mode, -1, wmode, sizeof(wmode));
if (usize == 0)
return NULL;
- return _wfopen(path, wmode);
+ path = PyUnicode_AsWideCharString((PyUnicodeObject*)unicode, NULL);
+ if (path == NULL)
+ return NULL;
+ f = _wfopen(path, wmode);
+ PyMem_Free(path);
+ return f;
#else
FILE *f;
PyObject *bytes = PyUnicode_EncodeFSDefault(unicode);
@@ -1997,17 +1997,15 @@ int
_Py_stat(PyObject *unicode, struct stat *statbuf)
{
#ifdef MS_WINDOWS
- wchar_t path[MAXPATHLEN+1];
- Py_ssize_t len;
+ wchar_t *path;
int err;
struct _stat wstatbuf;
- len = PyUnicode_AsWideChar((PyUnicodeObject*)unicode, path, MAXPATHLEN);
- if (len == -1)
+ path = PyUnicode_AsWideCharString((PyUnicodeObject*)unicode, NULL);
+ if (path == NULL)
return -1;
- path[len] = L'\0';
-
err = _wstat(path, &wstatbuf);
+ PyMem_Free(path);
if (!err)
statbuf->st_mode = wstatbuf.st_mode;
return err;
@@ -3724,7 +3722,7 @@ NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds)
#else /* MS_WINDOWS */
PyObject *pathobj;
DWORD rv;
- wchar_t path[MAXPATHLEN+1];
+ wchar_t *path;
Py_ssize_t len;
if (!_PyArg_NoKeywords("NullImporter()", kwds))
@@ -3739,15 +3737,15 @@ NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds)
return -1;
}
- len = PyUnicode_AsWideChar((PyUnicodeObject*)pathobj,
- path, sizeof(path) / sizeof(path[0]));
- if (len == -1)
+ path = PyUnicode_AsWideCharString((PyUnicodeObject*)pathobj, NULL);
+ if (path == NULL)
return -1;
/* see issue1293 and issue3677:
* stat() on Windows doesn't recognise paths like
* "e:\\shared\\" and "\\\\whiterab-c2znlh\\shared" as dirs.
*/
rv = GetFileAttributesW(path);
+ PyMem_Free(path);
if (rv != INVALID_FILE_ATTRIBUTES) {
/* it exists */
if (rv & FILE_ATTRIBUTE_DIRECTORY) {