Skip to content

Commit

Permalink
fix(DaedalusVm): print_stack_trace() now correctly lists local vars
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Dec 30, 2023
1 parent 6eddc50 commit e47d353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DaedalusVm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ namespace zenkit {
for (auto* sym : symbols) {
if (sym == nullptr) continue;

auto instance = _m_self_sym->get_instance();
auto instance = sym->get_instance();
if (instance != nullptr) {
DaedalusSymbol const* instance_symbol = find_symbol_by_instance(instance);
ZKLOGE("DaedalusVm",
Expand Down

0 comments on commit e47d353

Please sign in to comment.