aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/firejail/fs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/firejail/fs.c b/src/firejail/fs.c
index d7f6c899d..aa2852910 100644
--- a/src/firejail/fs.c
+++ b/src/firejail/fs.c
@@ -592,7 +592,9 @@ static void fs_remount_rec(const char *dir, OPERATION op) {
592 // remount 592 // remount
593 char **tmp = arr; 593 char **tmp = arr;
594 while (*tmp) { 594 while (*tmp) {
595 fs_remount_simple(*tmp, op); 595 // FUSE submounts mounted without allow_root/allow_other break
596 // fs_remount_simple, sort them out by calling realpath first
597 fs_remount(*tmp, op, 0);
596 free(*tmp++); 598 free(*tmp++);
597 } 599 }
598 free(arr); 600 free(arr);