Max Taylor wrote:
> Is there anything while using malloc that would compare to NewPtrClear to make sure the returned memory space is cleared to start with?
p = fn malloc( 4096 ) // not zeroed
Both of these zero the allocated block:
p = fn calloc( 4096, 1 )
p = fn calloc( 1, 4096 )