aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgramanas <anastasis.gramm2@gmail.com>2018-10-21 15:35:11 +0300
committergramanas <anastasis.gramm2@gmail.com>2018-10-21 15:35:11 +0300
commit6169275c8b318f99672fca00b48d61680ef91804 (patch)
treecc49c535074f09592b90dc196d7fcbfcc6662152
parent774d8047e0f0ac0824a81b176cec761aac1e62d7 (diff)
downloadck-6169275c8b318f99672fca00b48d61680ef91804.tar.gz
ck-6169275c8b318f99672fca00b48d61680ef91804.tar.bz2
ck-6169275c8b318f99672fca00b48d61680ef91804.zip
Fix crash when $EDITOR is not set
-rw-r--r--src/ckutil.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ckutil.c b/src/ckutil.c
index 9bfa139..272f737 100644
--- a/src/ckutil.c
+++ b/src/ckutil.c
@@ -113,6 +113,9 @@ void str_join_dirname_with_basename(char *ret, const char *dirname,
}
int str_is_empty(const char *s) {
+ if (!s) {
+ return 1;
+ }
while (*s != '\0') {
if (!isspace((unsigned char)*s)) {
return 0;