diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/exception.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 35fd1a894..c7abec5e7 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,10 @@ 2014-03-03 Corinna Vinschen <corinna@vinschen.de> + * exception.h (exception::exception): Install vectored exception + handler rather than vectored continue handler. + +2014-03-03 Corinna Vinschen <corinna@vinschen.de> + * sec_helper.cc (cygpsid::get_id): Move Samba SID->uid/gid mapping from get_sids_info here. (get_sids_info): Vice versa. diff --git a/winsup/cygwin/exception.h b/winsup/cygwin/exception.h index 80569e8d5..95d8311fc 100644 --- a/winsup/cygwin/exception.h +++ b/winsup/cygwin/exception.h @@ -128,7 +128,7 @@ public: kicks in. For some reason the vectored continue handler doesn't get called if no unhandled exception filter is installed. */ SetUnhandledExceptionFilter (handle); - AddVectoredContinueHandler (1, handle); + AddVectoredExceptionHandler (1, handle); } #else save = _except_list; |