From eec5129fdc6cd9b0a2ca5d590df93a6d532eab53 Mon Sep 17 00:00:00 2001 From: jfa Date: Wed, 30 Nov 2005 15:26:50 +0000 Subject: [PATCH] Create temporary directory on disk to be able writing in it --- src/LightApp/LightApp_Driver.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/LightApp/LightApp_Driver.cxx b/src/LightApp/LightApp_Driver.cxx index a10d2be1e..3febbba9d 100644 --- a/src/LightApp/LightApp_Driver.cxx +++ b/src/LightApp/LightApp_Driver.cxx @@ -505,6 +505,9 @@ std::string LightApp_Driver::GetTmpDir() aDir = OSD_Directory(aPath); } + OSD_Protection aProtection(OSD_RW, OSD_RWX, OSD_RX, OSD_RX); + aDir.Build(aProtection); + myTmpDir = aTmpDir.ToCString(); return aTmpDir.ToCString(); -- 2.39.2