- 
 
- 
  Notifications
 You must be signed in to change notification settings 
- Fork 496
Crashfix (uninitialized ptr) #4508
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
 
  Merged
 
 
 Dutchman101
 merged 2 commits into
 multitheftauto:master 
from
tederis:fixes/lang_crashfix 
 
 
 
  
 Oct 4, 2025 
 
 
 
  Merged
 
 Crashfix (uninitialized ptr) #4508
 Dutchman101
 merged 2 commits into
 multitheftauto:master 
from
tederis:fixes/lang_crashfix 
 
 
 
  
 Oct 4, 2025 
 
 Conversation
 
 
 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
 
 
 
 
 
 
 @Dutchman101
 Dutchman101
 merged commit Oct 4, 2025 
 
 
 
 
 
 
 
 
  
 
  
 
96cf6e3
 into
 
 
 multitheftauto:master
 
 
 6 of 7 checks passed
 
 Did someone experience the random crashes before?
Did someone experience the random crashes before?
I personally have experienced it today for the first time. And it's quite strange that it had never happened before. Though... I had encountered weird crashes on game start some time ago, but didn't explore it further.
 
 Dutchman101 
 pushed a commit
 that referenced
 this pull request
 
 Oct 5, 2025 
 
 
 
 
 MTABot 
 pushed a commit
 that referenced
 this pull request
 
 Oct 5, 2025 
 
 
 
 
 
 
 
 
2daba7b Update DX SDK requirement 8058af5 Addendum #1 to ca5ca19 e0933ad Rewrite Crash handler (to more reliably catch, dialog, dump and process all types of exceptions, even stack buffer overruns) Aims to reduce "MTA closed without anything", the handler was on ancient code and badly needed modernization away from deprecated API's as well. bc6e7c0 Fix GUI related crashes and regressions/bad code b596e87 Crashfix (uninitialized ptr) (#4508) 251b8ac Addendum #2 to 86ad47c & dc0fb96 2425c4c Addendum to last 37784c8 Replace ReadRegistryStringValue b162368 Addendum to 86ad47c & dc0fb96 a2d20ba GUI related safety tweaks bfd1306 Fix memory leak in main menu (News browser) ea949b2 Further improve settings window scaling on low res
 
 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.
 
 
 
 
m_pCurrentLangpointer is uninitialized currently which is UB and causes random crashes during a startup process. This PR fixes it.