We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b77e6ee commit e74e96eCopy full SHA for e74e96e
src/libponyrt/mem/alloc.c
@@ -51,6 +51,7 @@ void* ponyint_virt_alloc(size_t bytes)
51
{
52
fprintf(stderr, "out of memory trying to allocate %zu bytes: %s\n", bytes, strerror(errno));
53
pony_assert(0);
54
+ abort();
55
}
56
57
return p;
0 commit comments