Are you on Xbox, Steam or Microsoft Store version? Steam
Are you using Developer Mode or made changes to it? No
Brief description of the issue: I have been getting the following error in the last 4-5 days. I have not installed anything new within the simulator during that time period that might be causing this. And ideas?
Provide Screenshot(s)/video(s) of the issue encountered:
The error in the initial post is a user-mode application (FlightSimulator.exe) trying to access a kernel mode memory address. Windows does not allow that. It’s either an application bug or bad memory/configuration, hard disk.
I am on Sim Update 9. Luckily, on hard rebooting the PC, and emptying the AFC Bridge and a flightsimbuilder -WASM module from the community folder ,it seems to have resolved itself!
Had the same issue. The plan would fly for 10-15 minutes and then you would get the application error. It all started after the most recent update. I tried the app repair and I also ran it in Developer mode. First 3+hr flight was fine. Next step is to see if it functions ok in normal mode.
the 0xffffffffffffffff one is an interesting on (ie -1)
Just like the 0x000000000000C one
Bad Pointer, often a 0 or a -1. (when one looks at a dis-assembly of a full Crash Dump, and the code that caused the CTD, with an invalid pointer
Interesting returned numbers, 0 & -1.
Both are frequently used return of an error code, instead of the expected pointer value. implying that error message retrurn are not being detected and processed.
In just about every case I have looked up, there is NO looking to see if that returned value is in the range of being a ERROR Code, and taking the necessary action if it is.
This lack of detecting if the returned value is an error code or not, is typically in a library dll, and not code that Asobo has directly coded, so it could be argued its not basically an issue being cause by any defective Asobo Coding.
ie Asobo’s coded Flightsimulator.exe’s STABILITY is also dependent on the 3rd party libraries it is using !!