1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-12-15 08:23:51 +03:00

Don't leak a file descriptor in fcntl_lock_file(), when fcntl fails.

This commit is contained in:
Jim Meyering
2007-07-28 15:20:36 +00:00
parent 941e4f5567
commit b58a94fed4
2 changed files with 2 additions and 0 deletions

View File

@@ -245,6 +245,7 @@ int fcntl_lock_file(const char *file, short lock_type, int warn_if_read_only)
if (fcntl(lockfd, F_SETLKW, &lock)) {
log_sys_error("fcntl", file);
close(lockfd);
return -1;
}