rb_aligned_malloc can return NULL
Looking at gc.c, rb_aligned_malloc contains return NULL; so it has to be taken care of. Note however that posix_memalign(3posix) does not set errno.
return NULL;
rb_aligned_malloc can return NULL
Looking at gc.c, rb_aligned_malloc contains
return NULL;
so ithas to be taken care of. Note however that posix_memalign(3posix)
does not set errno.