Skip to content

Commit

Permalink
Merge pull request #5267 from Cropi/imfile-statefile
Browse files Browse the repository at this point in the history
imfile: remove state file on file delete fix
  • Loading branch information
rgerhards committed Nov 7, 2023
2 parents b9e510f + eadb0b6 commit 65cb51d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions plugins/imfile/imfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -1153,6 +1153,7 @@ fs_node_destroy(fs_node_t *const node)
DBGPRINTF("node destroy: %p edges:\n", node);

for(edge = node->edges ; edge != NULL ; ) {
detect_updates(edge);
fs_node_destroy(edge->node);
fs_edge_t *const toDel = edge;
edge = edge->next;
Expand Down

0 comments on commit 65cb51d

Please sign in to comment.