diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-03-19 00:46:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-19 00:46:25 (GMT) |
commit | 5f9cf23502febe0eb3bc02e45c7d2bfc79424757 (patch) | |
tree | 66e3e75c52201876c33fb90c9036420687f60dfb /Python | |
parent | 7b14f0c02ce9d919c503119db190dbca0e703393 (diff) | |
download | cpython-5f9cf23502febe0eb3bc02e45c7d2bfc79424757.zip cpython-5f9cf23502febe0eb3bc02e45c7d2bfc79424757.tar.gz cpython-5f9cf23502febe0eb3bc02e45c7d2bfc79424757.tar.bz2 |
bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422)
Python initialization now fails if decoding pybuilddir.txt
configuration file fails at startup.
_PyPathConfig_Calculate() now reports memory allocation failure and
decoding error on decoding pybuilddir.txt content from
UTF-8/surrogateescape.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pathconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pathconfig.c b/Python/pathconfig.c index 0ee87c4..87db66b 100644 --- a/Python/pathconfig.c +++ b/Python/pathconfig.c @@ -712,7 +712,7 @@ _Py_FindEnvConfigValue(FILE *env_file, const wchar_t *key, continue; } - wchar_t *tmpbuffer = _Py_DecodeUTF8_surrogateescape(buffer, n); + wchar_t *tmpbuffer = _Py_DecodeUTF8_surrogateescape(buffer, n, NULL); if (tmpbuffer) { wchar_t * state; wchar_t * tok = WCSTOK(tmpbuffer, L" \t\r\n", &state); |