mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
checkpoint
This commit is contained in:
@ -73,7 +73,7 @@ zalloc(long size)
|
||||
void *memory = malloc(size);
|
||||
if (memory == NULL)
|
||||
error("zmalloc failed\n");
|
||||
bzero(memory, size);
|
||||
memset(memory, 0, size);
|
||||
return memory;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user