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 e5e55c1b32e7daae02f0c47856056aedd2422488

Free pthread_key in bg_init() on error
Not that it matters much because the program will exit on failure, but
still.
Author: xaizek
Author date (UTC): 2024-03-11 13:26
Committer name: xaizek
Committer date (UTC): 2024-03-11 17:30
Parent(s): 485764f7e0878fb8fb1ce7233b12588ff490ad35
Signing key: 99DC5E4DB05F6BE2
Tree: bbb50fb77b845749ba3543603af04f53fc4dec74
File Lines added Lines deleted
src/background.c 1 0
File src/background.c changed (mode: 100644) (index 7ba30d8ef..4183f545c)
... ... bg_init(void)
161 161 pthread_t id; pthread_t id;
162 162 if(pthread_create(&id, NULL, &error_thread, NULL) != 0) if(pthread_create(&id, NULL, &error_thread, NULL) != 0)
163 163 { {
164 pthread_key_delete(current_job);
164 165 return 1; return 1;
165 166 } }
166 167
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