You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's a great explanation! Thank you so much! Do you want to open a PR that updates the comment? That way the codebase can reflect your contribution of knowledge 😄
Hi! Great work! Learn a lot about cgo and jq internals from this project.
I start my own project to use jq programs in Go projects with ability to cache compiled jq state. So here are some findings of
jq_start
behavior:jq_start does two important things:
That stack is freed by a jq_teardown call that will call the same jq_reset. But input jv is already freed by the deferred call ;) That is why you need to use jv_copy here: https://github.com/jzelinskie/faq/blob/master/pkg/jq/exec.go#L237
The text was updated successfully, but these errors were encountered: