Unhandled exception no stack
-
Hi guys, strange one, I get an access violation in ole32:
Unhandled exception at 0x755BC8F6 (ole32.dll) in MyApp.exe: 0xC0000005: Access violation reading location 0xFEEEFEEE.
but all stack traces of all threads are empty and the error happens when the application is idle so I don't know how to pinpoint the problem. Ideas? -
I have seen that with file dialogs on windows, but I don't think it's anything specific to your code. If I remember correctly the exception happens when the file dialog is initialized somewhere deep in windows' stuff and is "harmless". Try using the alien file dialog (if that's your case).
-
@VRonin
You know a lot more than I do, so I'm only throwing this out there as a possible hint....!This may not apply because of your ole32 stuff. But often when you cannot get any stack trace at a crash it's indicative that a local variable on the stack has been overwritten beyond the end (like, a local array and you've gone over the end of it) --- that goes up the stack and trashes the call stack information... ?