Are there any resources available about how to understand and parse crash logs? I’m getting fairly frequent crashes in my game, but from the crash log I’m not able to understand what exactly is failing. The crash is:
The first line is where the crash occurs, the the rest of the lines are the calls leading up to the crash.
C++ mangled text can be a bit obfustaced, but you’ve probably already guess that it’s a call to dmScript::SetStreamValue that causes it. If you have osx/linux, you can run c++filt -n _ZN8dmScript14SetStreamValueIfEEvPvid and you’ll get void dmScript::SetStreamValue<float>(void*, int, double)
You are setting values to a buffer, from Lua, right?
This looks very much like a bug in our Buffer API, and it should never crash like that.
How is this buffer created? What’s the format (try print(buffer))
And how are you accessing it?