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

Wertzui123 2022-04-29 13:55:29 +02:00 committed by Jef Roosens
parent f8ed4ab9d0
commit 735817374e
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
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 {