Staging
v0.8.1
https://github.com/python/cpython
Revision b316c44b0105d11a80ff971636143735f3655bbf authored by Miss Islington (bot) on 09 March 2018, 20:35:14 UTC, committed by Brett Cannon on 09 March 2018, 20:35:14 UTC
(cherry picked from commit 7a7f100eb352d08938ee0f5ba59c18f56dc4a7b5)

Co-authored-by: Brett Cannon <brettcannon@users.noreply.github.com>
1 parent 3f7d0b6
Raw File
Tip revision: b316c44b0105d11a80ff971636143735f3655bbf authored by Miss Islington (bot) on 09 March 2018, 20:35:14 UTC
bpo-32758: Warn that ast.parse() and ast.literal_eval() can segfault the interpreter (GH-5960) (GH-6042)
Tip revision: b316c44
invalid_parameter_handler.c
#ifdef _MSC_VER

#include <stdlib.h>

#if _MSC_VER >= 1900
/* pyconfig.h uses this function in the _Py_BEGIN/END_SUPPRESS_IPH
 * macros. It does not need to be defined when building using MSVC
 * earlier than 14.0 (_MSC_VER == 1900).
 */

static void __cdecl _silent_invalid_parameter_handler(
    wchar_t const* expression,
    wchar_t const* function,
    wchar_t const* file,
    unsigned int line,
    uintptr_t pReserved) { }

_invalid_parameter_handler _Py_silent_invalid_parameter_handler = _silent_invalid_parameter_handler;

#endif

#endif
back to top