summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-12 14:35:46 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-12 14:35:46 +0200
commitb51bd875193c84e51afb907a0c8ff6091fc95d5f (patch)
treed2e3c85d92f1ae680f0c90b4b4fc88cce58ecba0 /Python/thread.c
parente7ed9c7bd2204dd48d67eb7b14813c0338a85a0c (diff)
parentf246749b9aa9cdb1f05eca29b7eef6a04e05fc8b (diff)
downloadcpython-b51bd875193c84e51afb907a0c8ff6091fc95d5f.tar.gz
Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
when decode astral characters.
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread.c b/Python/thread.c
index 810691f0b0..63eeb1e123 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -431,7 +431,7 @@ PyThread_GetInfo(void)
&& defined(_CS_GNU_LIBPTHREAD_VERSION))
value = NULL;
len = confstr(_CS_GNU_LIBPTHREAD_VERSION, buffer, sizeof(buffer));
- if (1 < len && len < sizeof(buffer)) {
+ if (1 < len && (size_t)len < sizeof(buffer)) {
value = PyUnicode_DecodeFSDefaultAndSize(buffer, len-1);
if (value == NULL)
PyErr_Clear();