diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-11-11 03:19:49 +0100 |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-11-11 03:19:49 +0100 |
commit | c8d8929d95e792127bba42a42ccd97dee165dbd4 (patch) | |
tree | 110d2ed1ee5d0fb80b288174f519a0e24fbcd754 /Python/thread.c | |
parent | 1705501613e48d1a0c235c5eb49e31db31029e31 (diff) | |
parent | 1672dbd709963c9b62601d4e043a9ae2ad826760 (diff) | |
download | cpython-c8d8929d95e792127bba42a42ccd97dee165dbd4.tar.gz |
Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/thread.c b/Python/thread.c index e55d34244e..25ab16e647 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -91,10 +91,6 @@ static size_t _pythread_stacksize = 0; #include "thread_nt.h" #endif -#ifdef OS2_THREADS -#define PYTHREAD_NAME "os2" -#include "thread_os2.h" -#endif /* #ifdef FOOBAR_THREADS |