fill memory with junk on malloc()
This commit is contained in:
parent
820de919b6
commit
cfdcf5c933
@ -70,6 +70,9 @@ void curl_memdebug(const char *logname)
|
|||||||
void *curl_domalloc(size_t size, int line, const char *source)
|
void *curl_domalloc(size_t size, int line, const char *source)
|
||||||
{
|
{
|
||||||
void *mem=(malloc)(size);
|
void *mem=(malloc)(size);
|
||||||
|
if(mem)
|
||||||
|
/* fill memory with junk */
|
||||||
|
memset(mem, 0xA5, size);
|
||||||
if(logfile)
|
if(logfile)
|
||||||
fprintf(logfile, "MEM %s:%d malloc(%d) = %p\n",
|
fprintf(logfile, "MEM %s:%d malloc(%d) = %p\n",
|
||||||
source, line, size, mem);
|
source, line, size, mem);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user