Issue #5943: Fix lchflags crash.
This commit is contained in:
parent
25e218e381
commit
4adbc34aaf
|
@ -1981,7 +1981,7 @@ posix_lchflags(PyObject *self, PyObject *args)
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
int res;
|
int res;
|
||||||
if (!PyArg_ParseTuple(args, "O&k:lchflags",
|
if (!PyArg_ParseTuple(args, "O&k:lchflags",
|
||||||
PyUnicode_FSConverter, &path, &flags))
|
PyUnicode_FSConverter, &opath, &flags))
|
||||||
return NULL;
|
return NULL;
|
||||||
path = bytes2str(opath, 1);
|
path = bytes2str(opath, 1);
|
||||||
Py_BEGIN_ALLOW_THREADS
|
Py_BEGIN_ALLOW_THREADS
|
||||||
|
|
Loading…
Reference in New Issue