Author: tfaber
Date: Sat Aug 6 06:52:41 2016
New Revision: 72119
URL:
http://svn.reactos.org/svn/reactos?rev=72119&view=rev
Log:
[CRT]
- Apply Wine commit b7f6362d (msvcrt: Use the correct object type for __non_rtti_object
exceptions.) by Alexandre Julliard
CORE-11794
Modified:
trunk/reactos/sdk/lib/crt/except/cpp.c
Modified: trunk/reactos/sdk/lib/crt/except/cpp.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/lib/crt/except/cpp.c?r…
==============================================================================
--- trunk/reactos/sdk/lib/crt/except/cpp.c [iso-8859-1] (original)
+++ trunk/reactos/sdk/lib/crt/except/cpp.c [iso-8859-1] Sat Aug 6 06:52:41 2016
@@ -1134,7 +1134,7 @@
{
__non_rtti_object e;
MSVCRT___non_rtti_object_ctor( &e, "Bad read pointer - no RTTI
data!" );
- _CxxThrowException( &e, &bad_typeid_exception_type );
+ _CxxThrowException( &e, &__non_rtti_object_exception_type );
return NULL;
}
__ENDTRY
@@ -1219,7 +1219,7 @@
{
__non_rtti_object e;
MSVCRT___non_rtti_object_ctor( &e, "Access violation - no RTTI
data!" );
- _CxxThrowException( &e, &bad_typeid_exception_type );
+ _CxxThrowException( &e, &__non_rtti_object_exception_type );
return NULL;
}
__ENDTRY
@@ -1258,7 +1258,7 @@
{
__non_rtti_object e;
MSVCRT___non_rtti_object_ctor( &e, "Access violation - no RTTI
data!" );
- _CxxThrowException( &e, &bad_typeid_exception_type );
+ _CxxThrowException( &e, &__non_rtti_object_exception_type );
return NULL;
}
__ENDTRY