diff options
Diffstat (limited to 'Python/pathconfig.c')
-rw-r--r-- | Python/pathconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pathconfig.c b/Python/pathconfig.c index 9591fcc..7ebd69b 100644 --- a/Python/pathconfig.c +++ b/Python/pathconfig.c @@ -382,8 +382,8 @@ _Py_FindEnvConfigValue(FILE *env_file, const wchar_t *key, /* Comment - skip */ continue; } - tmpbuffer = _Py_DecodeUTF8_surrogateescape(buffer, n, NULL); - if (tmpbuffer != NULL) { + tmpbuffer = _Py_DecodeUTF8_surrogateescape(buffer, n); + if (tmpbuffer) { wchar_t * state; wchar_t * tok = wcstok(tmpbuffer, L" \t\r\n", &state); if ((tok != NULL) && !wcscmp(tok, key)) { |