1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2026-05-01 19:29:27 +03:00

Merge pull request #1245 from dnobori/201130_fix_bad_remove

Found the bad remove for lock files.
This commit is contained in:
Ilya Shipitsin
2020-11-30 04:29:44 -08:00
committed by GitHub
-1
View File
@@ -799,7 +799,6 @@ void *UnixNewSingleInstance(char *instance_name)
if (fcntl(fd, F_SETLK, &lock) == -1)
{
close(fd);
(void)remove(name);
return NULL;
}
else