builtin: ignore C++ 0xE06D7363 exception errors on windows (#14225)

master
Wertzui123 2022-04-29 13:55:29 +02:00 committed by GitHub
parent 995485c649
commit 872f739396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ fn unhandled_exception_handler(e &ExceptionPointers) int {
match e.exception_record.code {
// These are 'used' by the backtrace printer
// so we dont want to catch them...
0x4001000A, 0x40010006 {
0x4001000A, 0x40010006, 0xE06D7363 {
return 0
}
else {