I've written an unhandled exception handler for my application to create a minidump file. But I just got an user report of my application "disappearing" and no dump file was created. What class of error could cause my application to crash without creating a dump file. I have gotten other dump files so I know my handler works.
Asked
Active
Viewed 513 times
2
-
Try something like https://github.com/chromium/crashpad instead of a custom handler. – HolyBlackCat Jun 10 '21 at 19:55
-
Maybe your application didn't crash, just exit normally? – unddoch Jun 10 '21 at 21:10
-
You have to call `MiniDumpWriteDump` from an external process to reliably generate a minidump. – IInspectable Jun 11 '21 at 07:37