summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2023-04-25 21:40:55 +0300
committerIvan Maidanski <ivmai@mail.ru>2023-04-28 22:18:47 +0300
commit04cad5ea66ada05c1e138d453173e2b55388e1bb (patch)
tree3e5337490f7e8e2955494b44662e96fd2d74ae5f
parentafb7f57b449359157a45c8b15ac6315482a46f70 (diff)
downloadbdwgc-04cad5ea66ada05c1e138d453173e2b55388e1bb.tar.gz
Invoke GC_oom_fn if GC_make_array_descriptor failed because of no memory
(a cherry-pick of commit 223ce4fdf from 'master') * typd_mlc.c (GC_calloc_explicitly_typed): If descr_type is NO_MEM then return the result of GC_get_oom_fn()(lb) instead of NULL.
-rw-r--r--typd_mlc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/typd_mlc.c b/typd_mlc.c
index 8a49a6a2..f3789ca3 100644
--- a/typd_mlc.c
+++ b/typd_mlc.c
@@ -721,7 +721,8 @@ GC_API GC_ATTR_MALLOC void * GC_CALL GC_calloc_explicitly_typed(size_t n,
&complex_descr, &leaf);
lb *= n;
switch(descr_type) {
- case NO_MEM: return(0);
+ case NO_MEM:
+ return (*GC_get_oom_fn())(lb);
case SIMPLE:
return GC_malloc_explicitly_typed(lb, simple_descr);
case LEAF: