[pypy-commit] pypy win32-cleanup2: remove invalid_parameter_handler

mattip noreply at buildbot.pypy.org
Sun Apr 8 14:47:01 CEST 2012


Author: Matti Picus <matti.picus at gmail.com>
Branch: win32-cleanup2
Changeset: r54254:e3349e81f0e9
Date: 2012-04-08 15:42 +0300
http://bitbucket.org/pypy/pypy/changeset/e3349e81f0e9/

Log:	remove invalid_parameter_handler

diff --git a/pypy/translator/c/src/winstuff.c b/pypy/translator/c/src/winstuff.c
--- a/pypy/translator/c/src/winstuff.c
+++ b/pypy/translator/c/src/winstuff.c
@@ -27,7 +27,7 @@
 
 void pypy_Windows_startup(void)
 {
-#if defined _MSC_VER && _MSC_VER >= 1400 && defined(__STDC_SECURE_LIB__)
+#if 0 &&defined _MSC_VER && _MSC_VER >= 1400 && defined(__STDC_SECURE_LIB__)
     /* Set CRT argument error handler */
     _set_invalid_parameter_handler(InvalidParameterHandler);
     /* turn off assertions within CRT in debug mode;


More information about the pypy-commit mailing list