소스 검색

fix LOCK file deletion to prevent crash on windows

xry
Sanjay Ghemawat 12 년 전
부모
커밋
583f1499c0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      db/db_impl.cc

+ 1
- 1
db/db_impl.cc 파일 보기

@ -1427,7 +1427,7 @@ Status DestroyDB(const std::string& dbname, const Options& options) {
FileType type;
for (size_t i = 0; i < filenames.size(); i++) {
if (ParseFileName(filenames[i], &number, &type) &&
filenames[i] != lockname) { // Lock file will be deleted at end
type != kDBLockFile) { // Lock file will be deleted at end
Status del = env->DeleteFile(dbname + "/" + filenames[i]);
if (result.ok() && !del.ok()) {
result = del;

불러오는 중...
취소
저장