Sweden-Number/dlls/msvcrt
Piotr Caban 3a0b3c5bc8 msvcrt: Register exception object before unwinding.
Thrown object was incorrectly freed in following situation:
try {
     try {
         throw obj;
     } catch(...) {
         throw;
     }
} catch(...) {
     //use object here
}

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2016-03-22 12:20:31 +09:00
..
tests msvcrt/tests: Use todo_wine_if() in tests. 2016-02-22 19:54:49 +09:00
Makefile.in
console.c msvcrt: Refactor pf_printf to take options as flags instead of as BOOL parameter. 2015-11-04 19:18:56 +09:00
cpp.c msvcrt: Fix 64-bit _CxxThrowException implementation. 2016-02-25 22:45:07 +09:00
cppexcept.h
ctype.c
cxx.h msvcrt: Undefine __thiscall before redefining it. 2015-03-04 21:50:32 +09:00
data.c ucrtbase: Add stub functions for narrow environment. 2015-08-28 13:15:06 +09:00
dir.c
environ.c
errno.c
except.c msvcrt: Handle non c++ exceptions in __DestructExceptionObject. 2016-03-18 22:20:03 +09:00
except_arm.c msvcr80: Use Cxx(Un)RegisterExceptionObject helpers in i386 nested exception handler. 2016-03-17 11:32:31 +09:00
except_i386.c msvcrt: Register exception object before unwinding. 2016-03-22 12:20:31 +09:00
except_x86_64.c msvcrt: Dump exception information in x86_64 __CxxFrameHandler. 2016-03-22 12:20:19 +09:00
exit.c ucrtbase: Hook up _crt_atexit. 2015-08-27 17:10:08 +09:00
file.c msvcrt: Don't close HANDLE if stdout or stderr is sharing it. 2016-02-20 12:09:19 +09:00
heap.c msvcrt: Don't lock the heap in operator_new. 2015-11-09 23:10:06 +09:00
locale.c msvcr110: Add _W_Gettnames implementation. 2016-01-20 21:19:27 +09:00
lock.c msvcr110: Add Concurrency::details::_GetConcurrency. 2015-07-29 21:44:03 +02:00
main.c msvcrt: Handle of thread created by _beginthread should not be closed on thread detach. 2016-02-01 21:41:22 +09:00
math.c msvcr120: Add _set_FMA3_enable stub. 2016-01-19 14:31:46 +09:00
mbcs.c msvcrt: Return error if last known character is further in the string then current character. 2015-12-21 18:20:00 +01:00
misc.c msvcrt: Add _crt_debugger_hook implementation. 2016-01-20 01:48:52 +09:00
msvcrt.h msvcrt: Destroy thrown c++ object before calling handler in _except_handler4_common. 2016-03-18 22:20:03 +09:00
msvcrt.spec msvcrt: Add __CxxUnregisterExceptionObject partial implementation. 2016-03-17 11:32:25 +09:00
mtdll.h
printf.h ucrtbase: Handle the C99 'z' size_t specifier for integers. 2015-11-04 19:19:32 +09:00
process.c msvcrt: Call CreateProcess with CREATE_UNICODE_ENVIRONMENT flag in exec functions family. 2014-12-04 14:03:34 +01:00
rsrc.rc
scanf.c msvcrt: Fix cwscanf* prototypes. 2015-12-23 16:32:09 +01:00
scanf.h msvcrt: Fix cwscanf* prototypes. 2015-12-23 16:32:09 +01:00
string.c msvcr120: Implement strtof and _strtof_l. 2016-02-19 15:10:20 +09:00
thread.c msvcrt: Handle of thread created by _beginthread should not be closed on thread detach. 2016-02-01 21:41:22 +09:00
time.c msvcr110: Fix __lc_time_data definition. 2016-01-20 21:19:21 +09:00
undname.c msvcrt: Add support for $$B datatype description format in unDName. 2016-01-21 17:01:45 +09:00
wcs.c msvcr120: Add wcstof implementation. 2016-02-19 15:10:20 +09:00