Skip to content

Commit 584fd63

Browse files
committed
Fix internal options
1 parent d026bcf commit 584fd63

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

snapshot/win/module_snapshot_win.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ void ModuleSnapshotWin::GetCrashpadOptionsInternal(
259259
options->system_crash_reporter_forwarding = TriState::kUnset;
260260
options->gather_indirectly_referenced_memory = TriState::kUnset;
261261
options->indirectly_referenced_memory_cap = 0;
262+
options->adjust_stack_capture = TriState::kUnset;
262263
return;
263264
}
264265

@@ -270,6 +271,8 @@ void ModuleSnapshotWin::GetCrashpadOptionsInternal(
270271
crashpad_info_->GatherIndirectlyReferencedMemory();
271272
options->indirectly_referenced_memory_cap =
272273
crashpad_info_->IndirectlyReferencedMemoryCap();
274+
options->adjust_stack_capture =
275+
crashpad_info_->AdjustStackCapture();
273276
}
274277

275278
const VS_FIXEDFILEINFO* ModuleSnapshotWin::VSFixedFileInfo() const {

0 commit comments

Comments
 (0)