From 776e3e6b650bbb29c96179ee37ba3fdaf7c3810c Mon Sep 17 00:00:00 2001 From: Lucas Franceschino Date: Thu, 12 Mar 2020 09:09:22 +0100 Subject: [PATCH] free hitlist --- zathura/synctex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/synctex.c b/zathura/synctex.c index 511a118..fb442ed 100644 --- a/zathura/synctex.c +++ b/zathura/synctex.c @@ -203,7 +203,7 @@ synctex_rectangles_from_position(const char* filename, const char* input_file, } girara_list_t* hitlist_flat = flatten_rectangles(hitlist); - /* girara_list_free(hitlist); */ + girara_list_free(hitlist); return hitlist_flat; }