1311 Crash

Started by TomTaylor

Susume Lv 1

Crashed during different script - log.txt says during ActionRebuild, scriptlog also says during Rebuild.
Event viewer says exception code 0xc0000005 in game_library.dll.

saksoft2 Lv 1

0xc0000005 is an access violation. It means the program was trying to use an area of memory that the operating system had not let the program own yet. Either you ran past the end of a buffer (touching memory you did not own) or you overwrote the area of memory where another variable you did own lived and made it point to some random location you didn't own.

Either way, it's related to memory work and is an extremely common error in most C-based programs as it is relatively easy to

  • mess up pointer arithmetic
  • not check the sizes of your buffers against the content you are pumping into them

And there are WAY more than just the 2 ways I listed to hit this error. But based on what I think Foldit is doing internally, those seem like the first causes I would try to rule out.

Bletchley Park Lv 1

If you check my snippet of log, you can see the phrase 'Setting weight of master jump ( jump-id=12 ) to 1.0 (was undefined)'. That should provide a clue as to where the issue comes from. If that weight is in a structure that needs initialization, you may also have pointers in there causing memory exceptions (which I have since also seen).

Susume Lv 1

And again during ActionRebuild (or possibly Sending SOPs)
Event viewer: exception code c0000005 in StackHash_0a9e

Bruno Kestemont Lv 1

Crashes mainly when dooing something on screen (even mouse over).

With window minimized (and recipe), I didn't experience a crash yet.