Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-10-03 10:23:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-03 11:49:15 +0300
commit10ae2ea4ae073c09a3b127d4a92915bbc4a61583 (patch)
tree217f3aeb03d00bc92b2e2d1ad651610d0cbd1ea4 /source/blender/blenkernel/intern
parent29a85682a0395f599f0500216061d4302493e800 (diff)
Cleanup: remove unused temp directory initialization
This last worked in v2.27 (2003) where all paths were initialized to "/" which was still checked to initialize the temp directory. This hasn't been the case since 932e9e831647604e0b129b55e5ab035 where it changed to "/tmp/", then an empty string (current default).
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/appdir.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/blenkernel/intern/appdir.c b/source/blender/blenkernel/intern/appdir.c
index 236f1391443..2f7b2cc480c 100644
--- a/source/blender/blenkernel/intern/appdir.c
+++ b/source/blender/blenkernel/intern/appdir.c
@@ -999,14 +999,6 @@ const char *BKE_tempdir_base(void)
}
/**
- * Path to the system temporary directory (with trailing slash)
- */
-void BKE_tempdir_system_init(char *dir)
-{
- where_is_temp(dir, NULL, FILE_MAX, NULL);
-}
-
-/**
* Delete content of this instance's temp dir.
*/
void BKE_tempdir_session_purge(void)