add another forgotten ecl_enable_interrupts

This commit is contained in:
Marius Gerbershagen 2018-01-22 21:13:07 +01:00
parent 30a4e64c97
commit 79b77fc7e5

View file

@ -268,7 +268,10 @@ allocate_object_own(register struct ecl_type_information *type_info)
if( (op = *opp) == 0 ) {
UNLOCK();
op = (ptr_t)GENERAL_MALLOC((word)lb, cl_object_kind);
if (0 == op) return 0;
if (0 == op){
ecl_enable_interrupts_env(the_env);
return 0;
}
lg = GC_size_map[lb]; /* May have been uninitialized. */
} else {
*opp = obj_link(op);