Fixed an incorrect revert on db/db_impl_readonly.cc
Summary: Fixed an incorrect revert on db/db_impl_readonly.cc
This commit is contained in:
parent
9cda7cb77b
commit
a76bad8d14
@ -151,7 +151,9 @@ Status DB::OpenForReadOnly(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl->mutex_.Unlock();
|
impl->mutex_.Unlock();
|
||||||
if (!s.ok()) {
|
if (s.ok()) {
|
||||||
|
*dbptr = impl;
|
||||||
|
} else {
|
||||||
for (auto h : *handles) {
|
for (auto h : *handles) {
|
||||||
delete h;
|
delete h;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user