Memory.reallocN

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

class Memory
static
void*
reallocN

Parameters

mem void*

the memory to reallocate

nBlocks gsize

the number of blocks to allocate

nBlockBytes gsize

the size of each block in bytes

Return Value

Type: void*

the new address of the allocated memory

Meta