Avoid closing se->fd twice in fuse_lowlevel.c (#516)
authorFabian Vogt <fabian@ritter-vogt.de>
Fri, 15 May 2020 18:32:10 +0000 (20:32 +0200)
committerGitHub <noreply@github.com>
Fri, 15 May 2020 18:32:10 +0000 (19:32 +0100)
commit9126a7b48e2c27fb0ce19785181286b15a438f76
tree78ebf2a4887298ce42b155f17612896015e7390a
parentded868455aecc883ecc53b1fac7356dba761b240
Avoid closing se->fd twice in fuse_lowlevel.c (#516)

If fuse_session_unmount is called before fuse_session_destroy, both
would try to close(se->fd). Avoid that by resetting it in
fuse_session_unmount.
lib/fuse_lowlevel.c