Skip to content

Commit 9e662ff

Browse files
authored
Skip terminate_handler( frames. (#14609)
1 parent eb013a1 commit 9e662ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Extension/src/LanguageServer/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@ async function handleCrashFileRead(crashDirectory: string, crashFile: string, cr
14141414
funcStr = funcStr.replace(/, std::allocator<std::string>/g, "");
14151415
}
14161416
}
1417-
if (!validFrameFound && (funcStr.startsWith("crash_handler(") || funcStr.startsWith("_sigtramp"))) {
1417+
if (!validFrameFound && (funcStr.startsWith("crash_handler(") || funcStr.startsWith("terminate_handler(") || funcStr.startsWith("_sigtramp"))) {
14181418
continue; // Skip these on early frames.
14191419
}
14201420
validFrameFound = true;

0 commit comments

Comments
 (0)