From 6a783cfcf2b6531bb3ebd06464bb3ffa5b4a52f0 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 12 Dec 2022 13:58:24 +0000 Subject: [PATCH] exports: Never try to export paths below /run/flatpak or /run/host These directories are reserved for Flatpak's own use. Helps: https://github.com/flatpak/flatpak/issues/5205 Signed-off-by: Simon McVittie --- common/flatpak-exports.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/flatpak-exports.c b/common/flatpak-exports.c index 9a33cca9..c081bd5d 100644 --- a/common/flatpak-exports.c +++ b/common/flatpak-exports.c @@ -56,6 +56,8 @@ const char *dont_export_in[] = { "/dev", "/etc", "/proc", + "/run/flatpak", + "/run/host", "/usr", NULL };