-
-
Notifications
You must be signed in to change notification settings - Fork 22k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autoloads and engine singletons sometimes are considered "freed" #31159
Comments
Sounds similar to #30700 (comment) |
It looks like a bug in Line2D. I wonder if other people that had this issue were using Line2D as well. This is the same I've found with Valgrind some time ago. I had dismissed as not the cause, but now I think it actually might be the issue. This is reported in a similar point where we got the crash in the Pre-Launch Report from Google Play. |
Sample project with just a Line2D. If you run with ASAN enabled you can see the issue. It happens with Godot master (05be97a) too. |
I can't see what's wrong with those lines. uvs.push_back(uvs[_last_index[UP]]); But due to how Vector was implemented, it was resizing, invalidating the reference passed as parameter of |
This is exactly what I've found, actually. The logs I posted is from an older version of Godot, the actual issue is on this line: godot/scene/2d/line_builder.cpp Line 533 in 05be97a
Changing that to use a temporary variable doesn't give the ASAN error anymore. I'm not entirely sure this is the cause of my initial problem, but it's the only memory issue I could find. |
This is the issue where it was found, it was assigned to @hpvb #16961 (comment) |
Godot version:
3.1 stable
OS/device including version:
Linux and Android (multiple versions)
Issue description:
Sometimes we get errors and crashes where the message is like "Trying to access property 'X' from a stray pointer object". Happens with properties and sometimes functions. We added those checks in release mode so we can gather info from Google Play crash reports, since Godot only has them in debug.
When looking at the base from which the property belongs, we found it was an autoload marked as singleton. It doesn't make sense since we don't free this autoload and it should only be gone when the application exits.
We also had reports of freed instances when calling static functions from some scripts and from the OS singleton (which is on Godot itself and should never be freed).
I tried to use Valgrind but couldn't find anything particular that could be related to those errors.
This is quite similar to #26564, maybe the same thing.
We need help to figure out what could be causing this.
Steps to reproduce:
Not sure since it happens rarely.
The text was updated successfully, but these errors were encountered: