We currently leak one allocation per tag. Not a big deal since
"stats" is a short-running subcommand. But at least valgrind no
longer complains.
liter = linhash_iterator_new(tagtab, NULL, false);
(itemp = linhash_iterator_item(liter));
linhash_iterator_next(liter)
- )
+ ) {
+ free((char *)itemp->key);
num_tags += (long unsigned)itemp->object;
+ }
num_unique_tags = linhash_num_items(tagtab);
linhash_iterator_free(liter);
xdir = get_xdir();