mirror of https://github.com/etcd-io/bbolt.git
Fix split root dereference.
This commit fixes a bug that occurs when a root node is split just after a re-mmap occurs. Previously, this would cause a panic because the new root node would still reference keys from the old mmap.pull/34/head
parent
28e80eedb5
commit
f088575049
|
@ -645,7 +645,7 @@ func (b *Bucket) free() {
|
||||||
// dereference removes all references to the old mmap.
|
// dereference removes all references to the old mmap.
|
||||||
func (b *Bucket) dereference() {
|
func (b *Bucket) dereference() {
|
||||||
if b.rootNode != nil {
|
if b.rootNode != nil {
|
||||||
b.rootNode.dereference()
|
b.rootNode.root().dereference()
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, child := range b.buckets {
|
for _, child := range b.buckets {
|
||||||
|
|
Loading…
Reference in New Issue