You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/deps/mariadb-client-library/zutil.c-multiplication-over...

14 lines
447 B

diff --git external/zlib/zutil.c external/zlib/zutil.c
index 9543ae82..6a1ed031 100644
--- external/zlib/zutil.c
+++ external/zlib/zutil.c
@@ -310,7 +310,7 @@ voidpf ZLIB_INTERNAL zcalloc(opaque, items, size)
unsigned size;
{
(void)opaque;
- return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
+ return sizeof(uInt) > 2 ? (voidpf)malloc((long) items * size) :
(voidpf)calloc(items, size);
}