URI: 
       Fix memory leak in search items - sacc - sacc(omys), simple console gopher client
  HTML git clone git://bitreich.org/sacc/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/sacc/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR LICENSE
       ---
   DIR commit 26bc04284d9becc870a6a036a9a6f9bdfba8ba2a
   DIR parent 0a187a5d95a708254d99a2cdec6bb54b732481a1
  HTML Author: Quentin Rameau <quinq@fifth.space>
       Date:   Mon, 28 Oct 2019 01:34:11 +0100
       
       Fix memory leak in search items
       
       Diffstat:
         M sacc.c                              |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
   DIR diff --git a/sacc.c b/sacc.c
       @@ -778,6 +778,7 @@ searchitem(Item *entry, Item *item)
                        clearitem(item);
                if (!item->dat) {
                        selector = item->selector;
       +                free(item->tag);
                        item->selector = item->tag = sel;
                        dig(entry, item);
                        item->selector = selector;