зеркало из https://github.com/microsoft/git.git
Merge branch 'maint'
* maint: xmalloc: include size in the failure message
This commit is contained in:
Коммит
f9c3360570
|
@ -40,7 +40,8 @@ void *xmalloc(size_t size)
|
||||||
if (!ret && !size)
|
if (!ret && !size)
|
||||||
ret = malloc(1);
|
ret = malloc(1);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
die("Out of memory, malloc failed");
|
die("Out of memory, malloc failed (tried to allocate %lu bytes)",
|
||||||
|
(unsigned long)size);
|
||||||
}
|
}
|
||||||
#ifdef XMALLOC_POISON
|
#ifdef XMALLOC_POISON
|
||||||
memset(ret, 0xA5, size);
|
memset(ret, 0xA5, size);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче