projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e0e688
)
Invoke always our own exception handler if the exception wasn't handled. It prints...
author
Hartmut Birr
<osexpert@googlemail.com>
Tue, 30 Aug 2005 16:26:38 +0000
(16:26 +0000)
committer
Hartmut Birr
<osexpert@googlemail.com>
Tue, 30 Aug 2005 16:26:38 +0000
(16:26 +0000)
svn path=/trunk/; revision=17597
reactos/lib/kernel32/process/create.c
patch
|
blob
|
history
diff --git
a/reactos/lib/kernel32/process/create.c
b/reactos/lib/kernel32/process/create.c
index
05bfd52
..
ccbcd5a
100644
(file)
--- a/
reactos/lib/kernel32/process/create.c
+++ b/
reactos/lib/kernel32/process/create.c
@@
-36,10
+36,14
@@
_SEH_FILTER(BaseExceptionFilter)
}
_SEH_HANDLE
{
- ExceptionDisposition = UnhandledExceptionFilter(ExceptionInfo);
}
_SEH_END;
}
+ if ((ExceptionDisposition == EXCEPTION_CONTINUE_SEARCH || ExceptionDisposition == EXCEPTION_EXECUTE_HANDLER) &&
+ GlobalTopLevelExceptionFilter != UnhandledExceptionFilter)
+ {
+ ExceptionDisposition = UnhandledExceptionFilter(ExceptionInfo);
+ }
return ExceptionDisposition;
}