From 6768340a970beb67422d67e9c885aa226ef95a06 Mon Sep 17 00:00:00 2001 From: Andrew Shpota Date: Fri, 14 Jul 2017 15:09:38 +0300 Subject: [PATCH] fix 'mkdir(): File exists' error on create directory from parallel processes --- libs/sysplugins/smarty_internal_runtime_writefile.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libs/sysplugins/smarty_internal_runtime_writefile.php b/libs/sysplugins/smarty_internal_runtime_writefile.php index 7c462c6c..93f73125 100644 --- a/libs/sysplugins/smarty_internal_runtime_writefile.php +++ b/libs/sysplugins/smarty_internal_runtime_writefile.php @@ -37,9 +37,11 @@ class Smarty_Internal_Runtime_WriteFile } $_dirpath = dirname($_filepath); - // if subdirs, create dir structure - if ($_dirpath !== '.' && !file_exists($_dirpath)) { - mkdir($_dirpath, $_dir_perms, true); + + // if subdirs, create dir structure + if ($_dirpath !== '.' && !@mkdir($_dirpath, $_dir_perms, true) && !is_dir($_dirpath)) { + error_reporting($_error_reporting); + throw new SmartyException("unable to create directory {$_dirpath}"); } // write to tmp file, then move to overt file lock race condition