summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWilliam Langford <wlangfor@gmail.com>2019-11-21 17:53:12 -0500
committerWilliam Langford <wlangfor@gmail.com>2019-11-21 17:53:12 -0500
commite74eab828e658de3eca089f82b84fb67ed4c3a75 (patch)
tree843f4e7a3467cde286af373d5c4ec2d74fbfcaa7 /src
parentbda75c3142d969e2a52301a1eaead0cc05ec2c13 (diff)
Fix nesting try/catch inside internal errors
Diffstat (limited to 'src')
-rw-r--r--src/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compile.c b/src/compile.c
index 7706c236..05478ab8 100644
--- a/src/compile.c
+++ b/src/compile.c
@@ -1038,7 +1038,7 @@ block gen_try_handler(block handler) {
return gen_cond(// `if type=="object" and .__jq
gen_and(gen_call("_equal",
BLOCK(gen_lambda(gen_const(jv_string("object"))),
- gen_lambda(gen_noop()))),
+ gen_lambda(gen_call("type", gen_noop())))),
BLOCK(gen_subexp(gen_const(jv_string("__jq"))),
gen_noop(),
gen_op_simple(INDEX))),