fix FileLock: fd could be closed twice (#21362)

old-commit-hash: 766f3281bb5edc8ab4e86a745e07f4034e4f249c
This commit is contained in:
Dean Lee
2021-06-23 05:05:48 +08:00
committed by GitHub
parent f03ca47c9c
commit c1aec67697
-1
View File
@@ -134,7 +134,6 @@ class FileLock {
return;
}
if (HANDLE_EINTR(flock(fd_, op_)) < 0) {
close(fd_);
LOGE("Failed to lock file %s, errno=%d", fn_.c_str(), errno);
}
}