diff options
| author | 2019-07-05 07:42:52 +0530 | |
|---|---|---|
| committer | 2019-07-05 07:42:52 +0530 | |
| commit | c373b4b2793ad0b3719bba9d1a62bb4fe428885e (patch) | |
| tree | af9cc0e5c498039f6f867c39939c0d2302a5af7a | |
| parent | afdfcecb9c757eb52be34f854947de48fd437447 (diff) | |
| download | nnn-c373b4b2793ad0b3719bba9d1a62bb4fe428885e.tar.gz | |
Fix #301
| -rw-r--r-- | src/nnn.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2420,7 +2420,9 @@ static char *get_output(char *buf, const size_t bytes, const char *file, static bool getutil(const char *util) { - if (!get_output(g_buf, CMD_LEN_MAX, "which", util, NULL, FALSE)) + char buf[8]; + + if (!get_output(buf, 8, "which", util, NULL, FALSE)) return FALSE; return TRUE; |