mirror of
https://github.com/python/cpython.git
synced 2025-07-31 15:14:22 +00:00
Silence compiler warning about an uninitialized variable
This commit is contained in:
parent
dd225e4c64
commit
e56666d17f
1 changed files with 1 additions and 1 deletions
|
@ -3323,7 +3323,7 @@ PyUnicode_EncodeLocale(PyObject *unicode, const char *errors)
|
|||
wchar_t *wstr;
|
||||
PyObject *bytes = NULL;
|
||||
char *errmsg;
|
||||
PyObject *reason;
|
||||
PyObject *reason = NULL;
|
||||
PyObject *exc;
|
||||
size_t error_pos;
|
||||
int surrogateescape;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue