Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(2 edits)

Unfortunately, I'm getting an issue with the Linux version on my Manjaro laptop. All I get is the following output:

malloc(): corrupted top size
Aborted (core dumped)
 

Here is the output from GDB:

malloc(): corrupted top size
Thread 1 "Ctesiphon" received signal SIGABRT, Aborted.
0x00007ffff6f1f82f in raise () from /usr/lib/libc.so.6
(gdb) bt
#0  0x00007ffff6f1f82f in raise () from /usr/lib/libc.so.6
#1  0x00007ffff6f0a672 in abort () from /usr/lib/libc.so.6
#2  0x00007ffff6f61e78 in __libc_message () from /usr/lib/libc.so.6
#3  0x00007ffff6f6878a in malloc_printerr () from /usr/lib/libc.so.6
#4  0x00007ffff6f6bb01 in _int_malloc () from /usr/lib/libc.so.6
#5  0x00007ffff6f6d936 in calloc () from /usr/lib/libc.so.6
#6  0x00007fffe397682a in ?? () from /usr/lib/dri/i965_dri.so
#7  0x00007fffe39768c0 in ?? () from /usr/lib/dri/i965_dri.so
#8  0x00005555555d8673 in DebugDrawer::init() ()
#9  0x00005555555dc751 in init() ()
#10 0x000055555555c1d9 in main ()

Seems to be graphics related.

It's some gl code that tripped it, but I suspect this is from me using placement new to initialize that object and bullet really doesn't like that sort of thing, I'm uploading a new build that might fix this, let me know if it still happens.

(+1)

Thanks, the new build fixed it.