xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit b89102ac771d510f30c36df9ff4dbbf8862a61e9

Do not leak memory from trie structure
Author: xaizek
Author date (UTC): 2015-07-09 16:00
Committer name: xaizek
Committer date (UTC): 2015-07-09 16:00
Parent(s): 74858d643c7542c664ea050d3290d29f99f7c091
Signing key:
Tree: 85935da0b943c3e795a51b2cb050f16beded1bf0
File Lines added Lines deleted
src/utils/trie.c 3 2
File src/utils/trie.c changed (mode: 100644) (index 2ec30226b..4c71f508e)
... ... trie_free(trie_t trie)
43 43 { {
44 44 if(trie != NULL_TRIE) if(trie != NULL_TRIE)
45 45 { {
46 free(trie->left);
47 free(trie->right);
46 trie_free(trie->left);
47 trie_free(trie->right);
48 trie_free(trie->children);
48 49 free(trie); free(trie);
49 50 } }
50 51 } }
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master