We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1416919 commit f3caecbCopy full SHA for f3caecb
sizes/path_resolver.go
@@ -256,10 +256,13 @@ func (pr *InOrderPathResolver) forgetPathLocked(p *Path) {
256
panic("forgetPathLocked() called when refcount zero")
257
}
258
p.seekerCount--
259
+
260
if p.seekerCount > 0 {
261
// The path is still wanted (by another seeker).
262
return
- } else if p.parent != nil {
263
+ }
264
265
+ if p.parent != nil {
266
// We already found the object's parent, and the parent's path
267
// is wanted on account if this object. Decrement its
268
// seekerCount.
0 commit comments