mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-24 22:03:07 +00:00
Set errno to ENOMEM on rallocx() OOM failures
realloc() and rallocx() shares path, and realloc() should set errno to
ENOMEM upon OOM failures.
Fixes: ee961c2310 ("Merge realloc and rallocx pathways.")
Signed-off-by: Juhyung Park <qkrwngud825@gmail.com>
This commit is contained in:
@@ -3493,6 +3493,7 @@ do_rallocx(void *ptr, size_t size, int flags, bool is_realloc) {
|
|||||||
|
|
||||||
return p;
|
return p;
|
||||||
label_oom:
|
label_oom:
|
||||||
|
set_errno(ENOMEM);
|
||||||
if (config_xmalloc && unlikely(opt_xmalloc)) {
|
if (config_xmalloc && unlikely(opt_xmalloc)) {
|
||||||
malloc_write("<jemalloc>: Error in rallocx(): out of memory\n");
|
malloc_write("<jemalloc>: Error in rallocx(): out of memory\n");
|
||||||
abort();
|
abort();
|
||||||
|
|||||||
Reference in New Issue
Block a user