diff options
author | Alexey Izbyshev <izbyshev@ispras.ru> | 2018-10-28 16:45:50 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-10-28 16:45:50 (GMT) |
commit | 3d4fabb2a424cb04ae446ebe4428090c386f45a5 (patch) | |
tree | 31ba780345d92c1d73db0fcfe04995a360c3a0f2 /Modules/zlibmodule.c | |
parent | 68d6dc0770288075504635a8e42696070823fd69 (diff) | |
download | cpython-3d4fabb2a424cb04ae446ebe4428090c386f45a5.zip cpython-3d4fabb2a424cb04ae446ebe4428090c386f45a5.tar.gz cpython-3d4fabb2a424cb04ae446ebe4428090c386f45a5.tar.bz2 |
bpo-35090: Fix potential division by zero in allocator wrappers (GH-10174)
* Fix potential division by zero in BZ2_Malloc()
* Avoid division by zero in PyLzma_Malloc()
* Avoid division by zero and integer overflow in PyZlib_Malloc()
Reported by Svace static analyzer.
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r-- | Modules/zlibmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 36a3835..00bbe21 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -117,11 +117,11 @@ newcompobject(PyTypeObject *type) static void* PyZlib_Malloc(voidpf ctx, uInt items, uInt size) { - if (items > (size_t)PY_SSIZE_T_MAX / size) + if (size != 0 && items > (size_t)PY_SSIZE_T_MAX / size) return NULL; /* PyMem_Malloc() cannot be used: the GIL is not held when inflate() and deflate() are called */ - return PyMem_RawMalloc(items * size); + return PyMem_RawMalloc((size_t)items * (size_t)size); } static void |