keyring: better open/close behavior

This commit is contained in:
Mirek Kratochvil 2013-09-12 12:18:17 +02:00
parent 54e45bd3d4
commit 329953d575

View file

@ -419,6 +419,7 @@ bool keyring::open()
if (flock (lockfd, LOCK_EX) ) {
::close (lockfd);
lockfd = -1;
return false;
}
@ -462,10 +463,15 @@ bool keyring::close()
* 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;
unlink (fn.c_str() );
flock (lockfd, LOCK_UN);
::close (lockfd);
lockfd = -1;
return true;
}