From ced5298a40faf8250759c34c13c8de0f62924d19 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Thu, 14 Apr 2022 08:34:50 +0200 Subject: init/fs: fix `fs_dir_inject` the loop wasn't bounder, so was copying garbage - including multiple null bytes also, the trailing slash was appended even if the injected path didn't have one --- src/init/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/init/main.c') diff --git a/src/init/main.c b/src/init/main.c index b5ef22f..3460417 100644 --- a/src/init/main.c +++ b/src/init/main.c @@ -22,11 +22,11 @@ int main(void) { // allocate bss _syscall_memflag(&_bss_start, &_bss_end - &_bss_start, MEMFLAG_PRESENT); - MOUNT("/init", tar_driver(&_initrd)); + MOUNT("/init/", tar_driver(&_initrd)); MOUNT("/keyboard", ps2_drv()); MOUNT("/vga_tty", ansiterm_drv()); - MOUNT("/bind", fs_passthru(NULL)); + MOUNT("/bind/", fs_passthru(NULL)); if (!_syscall_fork()) { __stdin = __stdout = _syscall_open(argify("/com1")); -- cgit v1.2.3