Skip to content

Commit 2bd2229

Browse files
authored
Merge pull request #35 from omeg/omeg/fix-open-leak
Fix object leak in open_func()
2 parents ae56688 + 24160e9 commit 2bd2229

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fuseparts/_fusemodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ open_func(const char *path, struct fuse_file_info *fi)
740740
}
741741

742742
ret = 0;
743-
goto OUT;
743+
goto OUT_DECREF;
744744

745745
EPILOGUE
746746
}

0 commit comments

Comments
 (0)