mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.debug: Fix locals being reported under wrong stack frame in some cases (+tests!!)
This commit is contained in:
parent
20fc0c9c15
commit
a095a0c533
2 changed files with 94 additions and 1 deletions
|
@ -104,7 +104,7 @@ local function get_traceback_table(thread, start_level)
|
|||
levels[(level-start_level)+1] = {
|
||||
level = level;
|
||||
info = info;
|
||||
locals = get_locals_table(thread, level+(thread and 0 or 1));
|
||||
locals = get_locals_table(thread, level+1);
|
||||
upvalues = get_upvalues_table(info.func);
|
||||
};
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue