Resolve symbol collision causing crashes on Linux#5
Merged
husker-dev merged 4 commits intohusker-dev:mainfrom Jan 10, 2026
Merged
Resolve symbol collision causing crashes on Linux#5husker-dev merged 4 commits intohusker-dev:mainfrom
husker-dev merged 4 commits intohusker-dev:mainfrom
Conversation
Owner
|
It looks better :) |
Owner
|
I think we have big time zone differences, so for me tomorrow is in about 8 hours :) |
Contributor
Author
|
No worries, I'm in no rush. It's better to double-check the code carefully, otherwise it won't turn out very well. As for GitHub Actions, some api tokens can become outdated there, which seems to be the most common thing that breaks |
Owner
|
@Lorg0n |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Сlosed the previous PR because I got confused about what I was testing, what wasn't there, and generally created it incorrectly from the main branch.
This PR fixes a critical SIGSEGV crash on Linux. The issue was caused by a symbol collision where global pointer variables shared the exact same names as system OpenGL functions (e.g., glGetIntegerv). The Linux dynamic linker would resolve to our variable instead of the real function, causing a crash.