fix corner case in false positive detection (#4011)

This commit is contained in:
Alex Lam S.L
2020-07-20 14:57:22 +01:00
committed by GitHub
parent 484d3fd8c7
commit 2021c2fa3e

View File

@@ -1232,7 +1232,7 @@ function patch_try_catch(orig, toplevel) {
if (typeof result != "object" || typeof result.name != "string" || typeof result.message != "string") {
if (!stack.filled && match[1]) stack.push({
code: code,
index: index,
index: index && index - 1,
offset: offset,
tries: JSON.parse(JSON.stringify(tries)),
});