mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Fix compiler warning in Objects/unicodeobject.c (GH-17440)
This commit is contained in:
parent
34864d1cff
commit
016b0280b8
1 changed files with 1 additions and 1 deletions
|
@ -15950,7 +15950,7 @@ _PyUnicode_Fini(PyThreadState *tstate)
|
|||
interp->fs_codec.encoding = NULL;
|
||||
PyMem_RawFree(interp->fs_codec.errors);
|
||||
interp->fs_codec.errors = NULL;
|
||||
interp->config.filesystem_errors = _Py_ERROR_UNKNOWN;
|
||||
interp->config.filesystem_errors = (wchar_t *)_Py_ERROR_UNKNOWN;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue