summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorKristján Valur Jónsson <sweskman@gmail.com>2013-03-19 22:24:10 (GMT)
committerKristján Valur Jónsson <sweskman@gmail.com>2013-03-19 22:24:10 (GMT)
commit5aed330e37c60b67e9ac87dc5afbf66b21e8a978 (patch)
treec8b2b1a32c8a6c8cab292ae948fa18d5cc541142 /Modules
parent843fae93121ac7ac1088b0521773eff567e7b41c (diff)
downloadcpython-5aed330e37c60b67e9ac87dc5afbf66b21e8a978.zip
cpython-5aed330e37c60b67e9ac87dc5afbf66b21e8a978.tar.gz
cpython-5aed330e37c60b67e9ac87dc5afbf66b21e8a978.tar.bz2
Issue #10296 : Don't handle BreakPoint exceptions using
Structured Exception Handling on windows.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/callproc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c
index 0d4578c..bf7d8fd 100644
--- a/Modules/_ctypes/callproc.c
+++ b/Modules/_ctypes/callproc.c
@@ -397,6 +397,11 @@ static DWORD HandleException(EXCEPTION_POINTERS *ptrs,
{
*pdw = ptrs->ExceptionRecord->ExceptionCode;
*record = *ptrs->ExceptionRecord;
+ /* We don't want to catch breakpoint exceptions, they are used to attach
+ * a debugger to the process.
+ */
+ if (*pdw == EXCEPTION_BREAKPOINT)
+ return EXCEPTION_CONTINUE_SEARCH;
return EXCEPTION_EXECUTE_HANDLER;
}
#endif