Author: zguo
Date: Thu Oct 23 15:55:03 2014
New Revision: 64928
URL:
http://svn.reactos.org/svn/reactos?rev=64928&view=rev
Log:
[CRT]
Cherrypick fix for CRT that broke LMarbles/LBreakout. Games are important.
CORE-8670
Modified:
branches/0.3.17/reactos/ (props changed)
branches/0.3.17/reactos/lib/sdk/crt/stdlib/errno.c
Propchange: branches/0.3.17/reactos/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Oct 23 15:55:03 2014
@@ -18,4 +18,4 @@
/branches/usb-bringup:51335,51337,51341-51343,51348,51350,51353,51355,51365-51369,51372,51384-54388,54396-54398,54736-54737,54752-54754,54756-54760,54762,54764-54765,54767-54768,54772,54774-54777,54781,54787,54790-54792,54797-54798,54806,54808,54834-54838,54843,54850,54852,54856,54858-54859
/branches/usb-bringup-trunk:55019-55543,55548-55554,55556-55567
/branches/wlan-bringup:54809-54998
-/trunk/reactos:64752-64754,64765,64769,64771,64776,64793,64800,64825,64829,64832-64833
+/trunk/reactos:64752-64754,64765,64769,64771,64776,64793,64800,64825,64829,64832-64833,64909
Modified: branches/0.3.17/reactos/lib/sdk/crt/stdlib/errno.c
URL:
http://svn.reactos.org/svn/reactos/branches/0.3.17/reactos/lib/sdk/crt/stdl…
==============================================================================
--- branches/0.3.17/reactos/lib/sdk/crt/stdlib/errno.c [iso-8859-1] (original)
+++ branches/0.3.17/reactos/lib/sdk/crt/stdlib/errno.c [iso-8859-1] Thu Oct 23 15:55:03
2014
@@ -141,7 +141,9 @@
else
{
ERR( "%s:%u %s: %s %lx\n", debugstr_w(file), line, debugstr_w(func),
debugstr_w(expr), arg );
+#if _MSVCR_VER > 0 // FIXME: possible improvement: use a global variable in the DLL
RaiseException( STATUS_INVALID_CRUNTIME_PARAMETER, EXCEPTION_NONCONTINUABLE, 0,
NULL );
+#endif
}
}