Skip to content

Commit

Permalink
fix LOCK file deletion to prevent crash on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ghemawat committed Mar 9, 2012
1 parent d79762e commit 583f149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/db_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 583f149

Please sign in to comment.