1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

No need to block_drop_unreferenced after builtins

(The correctness of this change is more obvious after the rename.)
This commit is contained in:
Muh Muhten
2019-02-25 23:02:14 -05:00
committed by Nico Williams
parent 260879a5c3
commit 36c250a03d

View File

@ -1794,6 +1794,5 @@ int builtins_bind(jq_state *jq, block* bb) {
builtins = gen_builtin_list(builtins);
*bb = block_bind_referenced(builtins, *bb, OP_IS_CALL_PSEUDO);
*bb = block_drop_unreferenced(*bb);
return nerrors;
}