fix file_is_locked

This commit is contained in:
Andrew Dolgov 2013-05-29 07:46:14 +04:00
parent f638b40348
commit 8ff2a86cf3
1 changed files with 15 additions and 10 deletions

View File

@ -961,7 +961,8 @@
}
function file_is_locked($filename) {
if (function_exists('flock') && file_exists(LOCK_DIRECTORY . "/$filename")) {
if (file_exists(LOCK_DIRECTORY . "/$filename")) {
if (function_exists('flock')) {
$fp = @fopen(LOCK_DIRECTORY . "/$filename", "r");
if ($fp) {
if (flock($fp, LOCK_EX | LOCK_NB)) {
@ -976,7 +977,11 @@
}
}
return true; // consider the file always locked and skip the test
} else {
return false;
}
}
function make_lockfile($filename) {
$fp = fopen(LOCK_DIRECTORY . "/$filename", "w");