From 45a9df836accd39cf2dbfbb2453496b0e4d93fa5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 8 Jan 2021 22:49:54 +0100 Subject: Major IDE/ATA driver rewrite This adds non-hardcoded multi-disk support. I just need to remove the boot/load.c loader and fix the max bootloader ext2 loading size. After that's done I'll try running it on real hardware. --- apps/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/exec.c') diff --git a/apps/exec.c b/apps/exec.c index 100ce26..8e3bf95 100644 --- a/apps/exec.c +++ b/apps/exec.c @@ -35,7 +35,7 @@ void on_submit(struct gui_event_keyboard *event, struct element *elem) strcat(final, inp); struct stat s = { 0 }; - if (stat(final, &s) && s.size) { + if (stat(final, &s) == 0 && s.size) { inp_elem->color_bg = COLOR_WHITE; exec(final, inp, arg, NULL); } else { -- cgit v1.2.3