mirror of https://github.com/python/cpython
os.mkdir() would crash with a Unicode filename and mode param.
This commit is contained in:
parent
90195e2616
commit
05107b6af7
|
@ -1863,7 +1863,7 @@ posix_mkdir(PyObject *self, PyObject *args)
|
|||
#ifdef Py_WIN_WIDE_FILENAMES
|
||||
if (unicode_file_names()) {
|
||||
PyUnicodeObject *po;
|
||||
if (PyArg_ParseTuple(args, "U|i:mkdir", &po)) {
|
||||
if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) {
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
/* PyUnicode_AS_UNICODE OK without thread lock as
|
||||
it is a simple dereference. */
|
||||
|
|
Loading…
Reference in New Issue