* commit '507bcabb3565d20541242ad61f987bc1a6483ba1': Add missing MALLOC_FAILURE_ACTION calls to dlmalloc.
This commit is contained in:
commit
877ad30fd6
@ -4049,12 +4049,20 @@ static void* sys_alloc(mstate m, size_t nb) {
|
||||
}
|
||||
|
||||
asize = granularity_align(nb + SYS_ALLOC_PADDING);
|
||||
if (asize <= nb)
|
||||
if (asize <= nb) {
|
||||
/* BEGIN android-added: set errno */
|
||||
MALLOC_FAILURE_ACTION;
|
||||
/* END android-added */
|
||||
return 0; /* wraparound */
|
||||
}
|
||||
if (m->footprint_limit != 0) {
|
||||
size_t fp = m->footprint + asize;
|
||||
if (fp <= m->footprint || fp > m->footprint_limit)
|
||||
if (fp <= m->footprint || fp > m->footprint_limit) {
|
||||
/* BEGIN android-added: set errno */
|
||||
MALLOC_FAILURE_ACTION;
|
||||
/* END android-added */
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user