Browse Source
Merge pull request #968 from trapexit/fix
Fix regression from remember_node refactor
pull/969/head
trapexit
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
2 deletions
-
libfuse/lib/fuse.c
|
@ -1298,9 +1298,12 @@ static |
|
|
void |
|
|
void |
|
|
unlink_node(struct fuse *f, |
|
|
unlink_node(struct fuse *f, |
|
|
struct node *node) |
|
|
struct node *node) |
|
|
|
|
|
{ |
|
|
|
|
|
if(remember_nodes(f)) |
|
|
{ |
|
|
{ |
|
|
assert(node->nlookup > 1); |
|
|
assert(node->nlookup > 1); |
|
|
node->nlookup--; |
|
|
node->nlookup--; |
|
|
|
|
|
} |
|
|
unhash_name(f,node); |
|
|
unhash_name(f,node); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|