瀏覽代碼

Always continue on first-chance exceptions

Brian Fiete 1 年之前
父節點
當前提交
30d5bbfa0c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      IDEHelper/WinDebugger.cpp

+ 1 - 1
IDEHelper/WinDebugger.cpp

@@ -2717,7 +2717,7 @@ bool WinDebugger::DoUpdate()
 					bool handled = false;
 
 					//TODO: Use a user-defined filter here to determine whether to stop or continue
-					if ((!isSystemException) && (isFirstChance))
+					if (isFirstChance)
 					{
 						if (exceptionRecord->ExceptionCode == 0x406D1388) // Visual C
 						{