Closed jj16791 closed 9 months ago
In this PR, calloc has been used instead of malloc when allocating memory for newly created ELF process images. This ensures all the memory is zero'ed out as to meet expectations of the initial memory space.
calloc
malloc
In this PR,
calloc
has been used instead ofmalloc
when allocating memory for newly created ELF process images. This ensures all the memory is zero'ed out as to meet expectations of the initial memory space.