diff options
author | Marvin Borner | 2021-01-08 14:51:11 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-08 14:51:11 +0100 |
commit | 01c570789d7f9ccc1521b791903c8a499b0f6323 (patch) | |
tree | e5275dbbc207db6be843df918b3944cc822d0819 /apps/exec.c | |
parent | 52920b03e996cf60b2665772837bfa0f1661a430 (diff) |
Kinda working VFS implementation
Diffstat (limited to 'apps/exec.c')
-rw-r--r-- | apps/exec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/exec.c b/apps/exec.c index e7cfcd8..100ce26 100644 --- a/apps/exec.c +++ b/apps/exec.c @@ -34,7 +34,8 @@ void on_submit(struct gui_event_keyboard *event, struct element *elem) strcat(final, PATH); strcat(final, inp); - if (stat(final)) { + struct stat s = { 0 }; + if (stat(final, &s) && s.size) { inp_elem->color_bg = COLOR_WHITE; exec(final, inp, arg, NULL); } else { |