From 2f51e6b45d17a87dc6293bd1d859505d9bb1411f Mon Sep 17 00:00:00 2001 From: Michael Catanzaro Date: Mon, 24 Jun 2019 11:17:53 -0500 Subject: Ensure directories are created before sandbox is initialized Anything that doesn't exist at process launch time will not be mounted in the sandbox. --- lib/ephy-file-helpers.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index a06f271cd..a2c11f9b5 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -417,6 +417,7 @@ ephy_file_helpers_init (const char *profile_dir, ret = ephy_ensure_dir_exists (ephy_profile_dir (), error); ephy_ensure_dir_exists (ephy_cache_dir (), NULL); ephy_ensure_dir_exists (ephy_config_dir (), NULL); + ephy_ensure_dir_exists (ephy_file_tmp_dir (), NULL); } if (steal_data_from_profile && profile_dir) { -- cgit v1.2.1