1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-26 11:59:02 +02:00

make_lockfile: check if file was created successfully

This commit is contained in:
Andrew Dolgov 2013-02-25 21:28:51 +04:00
parent 1a43a68cb1
commit a44bfcfd52

View File

@ -929,7 +929,7 @@
function make_lockfile($filename) {
$fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
if (flock($fp, LOCK_EX | LOCK_NB)) {
if ($fp && flock($fp, LOCK_EX | LOCK_NB)) {
if (function_exists('posix_getpid')) {
fwrite($fp, posix_getpid() . "\n");
}