The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

0 votes

Hey all,

I have a first playable demo of my game ready to send out to a few testers for feedback - but when I export a release build the game randomly crashes. It works fine in editor, and fine when exporting to a debug build - the issue only happens in release.

I have no idea how to track this down. I have no errors in the editor (I even cleaned up all warnings so it runs with zero issues that I know of) - but the Release build crashes every time. I vaguely know the repro steps for the crash, but without further data, I'm having problems debugging.

So, any ideas on what one does in this situation? If I could get it to crash in the debug build - I still wouldn't know what to do as there doesn't seem to be any logs generated?

Cheers for any help!

EDIT: More info:
I had an engineer friend take a look and he noted that an invalid memory call was causing the issue - possibly from a null reference. He then figured out I could turn on verbose logging (by running the exe from a cmd prompt and using -v).

Now the problem is when using -v, it won't crash. Without logging, it crashes. Same executable.

What could cause that?

in Engine by (78 points)
edited by

I have exactly the same problem, and it seems to be related to a queue_free() call, deleting a node.

In my case, I want to delete a node. When I use queue_ free() it crashes (in release build only), when I use remove _child(), it works (at least for testing).

Edit: I also delete other nodes with queue_free() without problems so there has to be more to it, but I could not pinpoint it yet. It could be related to collisions (the problematic node collides with another when deleted, while the others don't).

1 Answer

+3 votes
Best answer

Some general steps that you could try to narrow down the problem:

To strictly answer your question about cause: a race condition could be the culprit.

by (868 points)
selected by

Those are great tips - thank you so much!

I'd never heard of a race condition so I looked it up - and that does seem like a distinct possibility. The crash does seem to occur in the middle of a bit of 'chaos' where a variable is being referenced in one script, changed by another, then acted on by the first script when it's already changed (or possibly, freed). It's just odd that it's only on release.

Great tips and I'll dig into the suggestions. Thanks again :)

This kind of crash is often related to dangling Variants. A fix was integrated in 3.2.2, but it only works in debug builds for performance reasons. (A different fix which also works in release builds will be integrated in 4.0.)

I have just ran into the same problem using godot 3.2.2 stable release for an iphone game. However hope a bigger announcement is made on this bug. It will save alot of head ache.

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.