Skip to content

Commit 4155dea

Browse files
authored
Merge pull request #218 from blacktea/fix_windows_report
Fix printing stack trace under Windows.
2 parents 295c229 + 5d1d610 commit 4155dea

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

backward.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4430,9 +4430,8 @@ class SignalHandling {
44304430

44314431
StackTrace st;
44324432
st.set_machine_type(printer.resolver().machine_type());
4433-
st.set_context(ctx());
44344433
st.set_thread_handle(thread_handle());
4435-
st.load_here(32 + skip_frames);
4434+
st.load_here(32 + skip_frames, ctx());
44364435
st.skip_n_firsts(skip_frames);
44374436

44384437
printer.address = true;

0 commit comments

Comments
 (0)