diff options
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 { |