From 416063625be0f70bdf84506f04ba30adaa3ba0b0 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Wed, 8 Sep 2021 20:22:45 +0200 Subject: copy _syscall_fs_open's argument to a new buffer instead of a shared one this will be needed for storing vfs_op's properly --- src/shared/vfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shared') diff --git a/src/shared/vfs.h b/src/shared/vfs.h index 730a288..9419b11 100644 --- a/src/shared/vfs.h +++ b/src/shared/vfs.h @@ -16,7 +16,7 @@ struct vfs_op { enum vfs_op_types type; union { struct { - const char *path; + char *path; int path_len; } open; struct { -- cgit v1.2.3