keyring: better open/close behavior
This commit is contained in:
parent
54e45bd3d4
commit
329953d575
|
@ -419,6 +419,7 @@ bool keyring::open()
|
||||||
|
|
||||||
if (flock (lockfd, LOCK_EX) ) {
|
if (flock (lockfd, LOCK_EX) ) {
|
||||||
::close (lockfd);
|
::close (lockfd);
|
||||||
|
lockfd = -1;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -462,10 +463,15 @@ bool keyring::close()
|
||||||
* Note that unlink goes first, so that the lock disappears atomically.
|
* Note that unlink goes first, so that the lock disappears atomically.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
if (lockfd < 0) return true; //nothing to close
|
||||||
|
|
||||||
std::string fn = get_user_dir() + LOCK_FILENAME;
|
std::string fn = get_user_dir() + LOCK_FILENAME;
|
||||||
unlink (fn.c_str() );
|
unlink (fn.c_str() );
|
||||||
|
|
||||||
flock (lockfd, LOCK_UN);
|
flock (lockfd, LOCK_UN);
|
||||||
::close (lockfd);
|
::close (lockfd);
|
||||||
|
|
||||||
|
lockfd = -1;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue