mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-19 22:10:19 +02:00
mark pvalloc error path as unlikely
This commit is contained in:
parent
b0f81365a8
commit
da190f1469
1 changed files with 1 additions and 1 deletions
|
@ -1512,7 +1512,7 @@ EXPORT void *h_valloc(size_t size) {
|
|||
|
||||
EXPORT void *h_pvalloc(size_t size) {
|
||||
size = PAGE_CEILING(size);
|
||||
if (!size) {
|
||||
if (unlikely(!size)) {
|
||||
errno = ENOMEM;
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue