mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +00:00
the named of the character is actually NUL
This commit is contained in:
parent
5ad517a7d9
commit
7a6b44ab62
1 changed files with 1 additions and 1 deletions
|
|
@ -1897,7 +1897,7 @@ PyUnicode_FSConverter(PyObject* arg, void* addr)
|
||||||
size = PyBytes_GET_SIZE(output);
|
size = PyBytes_GET_SIZE(output);
|
||||||
data = PyBytes_AS_STRING(output);
|
data = PyBytes_AS_STRING(output);
|
||||||
if (size != strlen(data)) {
|
if (size != strlen(data)) {
|
||||||
PyErr_SetString(PyExc_TypeError, "embedded NULL character");
|
PyErr_SetString(PyExc_TypeError, "embedded NUL character");
|
||||||
Py_DECREF(output);
|
Py_DECREF(output);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue