@@ -73,8 +73,14 @@ pub unsafe fn panic(data: Box<dyn Any + Send>) -> u32 {
73
73
}
74
74
75
75
pub unsafe fn cleanup ( ptr : * mut u8 ) -> Box < dyn Any + Send > {
76
- let exception = Box :: from_raw ( ptr as * mut Exception ) ;
77
- exception. cause
76
+ let exception = ptr as * mut uw:: _Unwind_Exception ;
77
+ if ( * exception) . exception_class != rust_exception_class ( ) {
78
+ uw:: _Unwind_DeleteException ( exception) ;
79
+ super :: __rust_foreign_exception ( ) ;
80
+ } else {
81
+ let exception = Box :: from_raw ( exception as * mut Exception ) ;
82
+ exception. cause
83
+ }
78
84
}
79
85
80
86
// Rust's exception class identifier. This is used by personality routines to
@@ -164,9 +170,7 @@ cfg_if::cfg_if! {
164
170
// _Unwind_Context in our libunwind bindings and fetch the required data from there
165
171
// directly, bypassing DWARF compatibility functions.
166
172
167
- let exception_class = ( * exception_object) . exception_class;
168
- let foreign_exception = exception_class != rust_exception_class( ) ;
169
- let eh_action = match find_eh_action( context, foreign_exception) {
173
+ let eh_action = match find_eh_action( context) {
170
174
Ok ( action) => action,
171
175
Err ( _) => return uw:: _URC_FAILURE,
172
176
} ;
@@ -221,15 +225,14 @@ cfg_if::cfg_if! {
221
225
// and indirectly on Windows x86_64 via SEH.
222
226
unsafe extern "C" fn rust_eh_personality_impl( version: c_int,
223
227
actions: uw:: _Unwind_Action,
224
- exception_class : uw:: _Unwind_Exception_Class,
228
+ _exception_class : uw:: _Unwind_Exception_Class,
225
229
exception_object: * mut uw:: _Unwind_Exception,
226
230
context: * mut uw:: _Unwind_Context)
227
231
-> uw:: _Unwind_Reason_Code {
228
232
if version != 1 {
229
233
return uw:: _URC_FATAL_PHASE1_ERROR;
230
234
}
231
- let foreign_exception = exception_class != rust_exception_class( ) ;
232
- let eh_action = match find_eh_action( context, foreign_exception) {
235
+ let eh_action = match find_eh_action( context) {
233
236
Ok ( action) => action,
234
237
Err ( _) => return uw:: _URC_FATAL_PHASE1_ERROR,
235
238
} ;
@@ -293,10 +296,7 @@ cfg_if::cfg_if! {
293
296
}
294
297
}
295
298
296
- unsafe fn find_eh_action (
297
- context : * mut uw:: _Unwind_Context ,
298
- foreign_exception : bool ,
299
- ) -> Result < EHAction , ( ) > {
299
+ unsafe fn find_eh_action ( context : * mut uw:: _Unwind_Context ) -> Result < EHAction , ( ) > {
300
300
let lsda = uw:: _Unwind_GetLanguageSpecificData ( context) as * const u8 ;
301
301
let mut ip_before_instr: c_int = 0 ;
302
302
let ip = uw:: _Unwind_GetIPInfo ( context, & mut ip_before_instr) ;
@@ -308,7 +308,7 @@ unsafe fn find_eh_action(
308
308
get_text_start : & || uw:: _Unwind_GetTextRelBase ( context) ,
309
309
get_data_start : & || uw:: _Unwind_GetDataRelBase ( context) ,
310
310
} ;
311
- eh:: find_eh_action ( lsda, & eh_context, foreign_exception )
311
+ eh:: find_eh_action ( lsda, & eh_context)
312
312
}
313
313
314
314
// Frame unwind info registration
0 commit comments