Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/agent
diff options
context:
space:
mode:
authorEugene Tarassov2012-08-03 22:04:11 +0000
committerEugene Tarassov2012-08-03 22:04:11 +0000
commit717e4a8dea7b7c9cec82f29f520e7857f6316303 (patch)
treeaa245f77417ce0b573fae89ae787ea5df1fd6d09 /agent
parent8d7474846dbff8b9ce5762111416e8a92f981b61 (diff)
downloadorg.eclipse.tcf.agent-717e4a8dea7b7c9cec82f29f520e7857f6316303.tar.gz
org.eclipse.tcf.agent-717e4a8dea7b7c9cec82f29f520e7857f6316303.tar.xz
org.eclipse.tcf.agent-717e4a8dea7b7c9cec82f29f520e7857f6316303.zip
TCF Agent: fixed assertion failure on Windows 7
Diffstat (limited to 'agent')
-rw-r--r--agent/system/Windows/tcf/context-win32.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/agent/system/Windows/tcf/context-win32.c b/agent/system/Windows/tcf/context-win32.c
index 794431a4..21e3a783 100644
--- a/agent/system/Windows/tcf/context-win32.c
+++ b/agent/system/Windows/tcf/context-win32.c
@@ -678,7 +678,8 @@ static void debug_event_handler(DebugEvent * debug_event) {
}
}
trace(LOG_ALWAYS, "context: already stopped, id %s, exception 0x%08x", ctx->id, exception_code);
- send_context_started_event(ctx);
+ debug_event->continue_status = DBG_CONTINUE;
+ break;
}
ext = EXT(ctx);
memcpy(&ext->suspend_reason, &win32_event->u.Exception, sizeof(EXCEPTION_DEBUG_INFO));

Back to the top