mirror of
https://github.com/google/leveldb.git
synced 2026-08-18 10:33:27 +08:00
Automated Code Change
PiperOrigin-RevId: 866841934
This commit is contained in:
committed by
Victor Costan
parent
ac691084fd
commit
06188fdcf5
@@ -815,7 +815,7 @@ Status VersionSet::LogAndApply(VersionEdit* edit, port::Mutex* mu) {
|
||||
|
||||
// Unlock during expensive MANIFEST log write
|
||||
{
|
||||
mu->Unlock();
|
||||
mu->unlock();
|
||||
|
||||
// Write new record to MANIFEST log
|
||||
if (s.ok()) {
|
||||
@@ -836,7 +836,7 @@ Status VersionSet::LogAndApply(VersionEdit* edit, port::Mutex* mu) {
|
||||
s = SetCurrentFile(env_, dbname_, manifest_file_number_);
|
||||
}
|
||||
|
||||
mu->Lock();
|
||||
mu->lock();
|
||||
}
|
||||
|
||||
// Install the new version
|
||||
|
||||
Reference in New Issue
Block a user