ByePg icon indicating copy to clipboard operation
ByePg copied to clipboard

SEH handler does not handle external calls

Open can1357 opened this issue 6 years ago • 2 comments

can1357 avatar Oct 21 '19 02:10 can1357

Isn't this by design? More of an enhancement to include external calls? From my brief (30 minute) read-over of the project, the SEH enabling is local to the image that initializes it.

nicholaskunes avatar Oct 28 '19 09:10 nicholaskunes

Isn't this by design? More of an enhancement to include external calls? From my brief (30 minute) read-over of the project, the SEH enabling is local to the image that initializes it.

I still should be unwinding in a loop instead of just once as it will not work with simple code like

__try
{
    NonInlinedCall()
}

can1357 avatar Oct 28 '19 16:10 can1357