Memory.malloc0_N

This function is similar to g_malloc0(), allocating (n_blocks * n_block_bytes) bytes, but care is taken to detect possible overflow during multiplication. Since 2.24

class Memory
static
void*
malloc0_N

Parameters

nBlocks gsize

the number of blocks to allocate

nBlockBytes gsize

the size of each block in bytes

Return Value

Type: void*

a pointer to the allocated memory

Meta