Merge pull request #1376 from jasonKercher/master

Added zeroing to new memory regions from _unix_realloc
This commit is contained in:
gingerBill
2022-02-05 12:26:10 +00:00
committed by GitHub
4 changed files with 16 additions and 2 deletions
+2
View File
@@ -727,6 +727,8 @@ heap_alloc :: proc(size: int) -> rawptr {
}
heap_resize :: proc(ptr: rawptr, new_size: int) -> rawptr {
// NOTE: _unix_realloc doesn't guarantee new memory will be zeroed on
// POSIX platforms. Ensure your caller takes this into account.
return _unix_realloc(ptr, c.size_t(new_size))
}