diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-08-17 20:11:06 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-08-17 20:11:06 (GMT) |
commit | daca3d7e9b48badf02521df1b729ddd2733b2d77 (patch) | |
tree | 69c02529bc45711417bc5d3883d39732cd65af76 /Python | |
parent | 7270b7f1aae31ba04885aa5e400e6542a20c789e (diff) | |
download | cpython-daca3d7e9b48badf02521df1b729ddd2733b2d77.zip cpython-daca3d7e9b48badf02521df1b729ddd2733b2d77.tar.gz cpython-daca3d7e9b48badf02521df1b729ddd2733b2d77.tar.bz2 |
Issue #22206: Using pthread, PyThread_create_key() now sets errno to ENOMEM and
returns -1 (error) on integer overflow.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/thread_pthread.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index d9f7c76..27e0dc8 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -608,7 +608,15 @@ PyThread_create_key(void) { pthread_key_t key; int fail = pthread_key_create(&key, NULL); - return fail ? -1 : key; + if (fail) + return -1; + if (key > INT_MAX) { + /* Issue #22206: handle integer overflow */ + pthread_key_delete(key); + errno = ENOMEM; + return -1; + } + return (int)key; } void |