summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-06 17:51:53 +0200
committerGeorg Brandl <georg@python.org>2014-10-06 17:51:53 +0200
commit9d2ec0c84470eb9fdec4fe87cb223a425370e6c3 (patch)
tree3114c6929ece3426beda5e1910070133715faeff /Python/thread.c
parent53230dae4fce857df51a921150058eb07deca019 (diff)
parentb825edd615e1c95f78c3dfc601af978f967618f0 (diff)
downloadcpython-9d2ec0c84470eb9fdec4fe87cb223a425370e6c3.tar.gz
merge with 3.4
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 d1cb0e6f9d..9eb5d12f50 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();