Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
Bug report
We properly skip trampoline frames when they are not the top-most frame:
Lines 979 to 982 in3bd942f
| if (frame->owner==FRAME_OWNED_BY_CSTACK) { | |
| /* Trampoline frame */ | |
| frame=frame->previous; | |
| } |
But iftstate->current_frame is a trampoline frame (i.e.,FRAME_OWNED_BY_CSTACK) thendump_traceback will crash if faulthandler is triggered when executing a trampoline frame.