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 abf0b11b017db418bc34b4272900561b25e7443a

Add check for a NULL pointer to command_cmd()
Suggested by clang checker.
Author: xaizek
Author date (UTC): 2013-01-06 18:09
Committer name: xaizek
Committer date (UTC): 2013-01-06 18:11
Parent(s): 7ffa27fcc2a9d4ac4f04d5ab3ad362420074c94f
Signing key:
Tree: e080eff648f740786eed89d1bf22dbdb09d812ed
File Lines added Lines deleted
src/engine/cmds.c 4 1
File src/engine/cmds.c changed (mode: 100644) (index c52957893..92789baac)
... ... command_cmd(const cmd_info_t *cmd_info)
902 902 } }
903 903 else else
904 904 { {
905 new = insert_cmd(cur);
905 if((new = insert_cmd(cur)) == NULL)
906 {
907 return CMDS_ERR_NO_MEM;
908 }
906 909 } }
907 910
908 911 new->name = strdup(cmd_name); new->name = strdup(cmd_name);
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