]> git.eshelyaron.com Git - emacs.git/commit
Catch signals produced by PRED in tree-sitter search functions
authorYuan Fu <casouri@gmail.com>
Thu, 13 Apr 2023 21:36:46 +0000 (14:36 -0700)
committerEli Zaretskii <eliz@gnu.org>
Fri, 14 Apr 2023 06:07:46 +0000 (09:07 +0300)
commit759cdf1e510d9e0689aefeced784fbb81644cd5e
tree37650afd6e0fa8819332da1d83fa8cdbbaa86454
parent864a4dc236395e441aafd23b9cbca099afdc5324
Catch signals produced by PRED in tree-sitter search functions

Earlier we switched to using cursors rather than nodes to traverse the
parse tree.  Because cursors need cleanup, we have to catch signals
thrown by the predicate functions and free the cursor. Failing to do
this will result in leaking the cursor whenever the predicate function
signals in a search function.  This change fixes the leak.
* src/treesit.c (treesit_traverse_cleanup_cursor): New function.
(Ftreesit_search_subtree)
(Ftreesit_search_forward)
(Ftreesit_induce_sparse_tree): Catch signals.  (Bug#62823)

(cherry picked from commit a5eb9f6ad4e6f5a2819b540a477f1e889f6ef355)
src/treesit.c