From 2c819b1e31ca02f751ec201c30f0a249705049a8 Mon Sep 17 00:00:00 2001 From: sulincix Date: Wed, 14 Aug 2024 22:06:38 +0000 Subject: [PATCH] ymp sandbox tmpfs fix --- src/ccode/sandbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ccode/sandbox.c b/src/ccode/sandbox.c index 166c274..3cfa543 100755 --- a/src/ccode/sandbox.c +++ b/src/ccode/sandbox.c @@ -139,7 +139,7 @@ gint sandbox(const gchar* type, gchar** args, gint length){ } token = strtok(sandbox_tmpfs,":"); while(token != NULL){ - sandbox_bind_shared(token); + sandbox_create_tmpfs(token); token = strtok(NULL,":"); } write_to_file("/tmp/ymp-root/.sandbox", "%d",getpid());