diff --git a/crypto777/iguana_OS.c b/crypto777/iguana_OS.c index ba0888b55..f88bfa286 100755 --- a/crypto777/iguana_OS.c +++ b/crypto777/iguana_OS.c @@ -117,7 +117,7 @@ void *mycalloc(uint8_t type,int32_t n,long itemsize) //portable_mutex_unlock(&MEMmutex); return((void *)((long)item + sizeof(*item))); #else - return(calloc(n,itemsize)); + return(calloc(1,n*itemsize + 64)); #endif }