diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-12-30 19:34:53 +0000 |
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-12-30 19:34:53 +0000 |
| commit | 5486efd4276983394d7fed1a54eccdbd37e54ce2 (patch) | |
| tree | aa39e5b66bc93e41755a893f9996c964f3c45d59 | |
| parent | Fix recursion in test function (diff) | |
| download | netfs-5486efd4276983394d7fed1a54eccdbd37e54ce2.tar.bz2 netfs-5486efd4276983394d7fed1a54eccdbd37e54ce2.tar.xz netfs-5486efd4276983394d7fed1a54eccdbd37e54ce2.zip | |
Add missing call to fuse_destroy in test
| -rw-r--r-- | netfs/unittests/testFuse.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/netfs/unittests/testFuse.cpp b/netfs/unittests/testFuse.cpp index ded7077..0a466d5 100644 --- a/netfs/unittests/testFuse.cpp +++ b/netfs/unittests/testFuse.cpp @@ -39,6 +39,7 @@ public: th->join(); } std::filesystem::remove(mntpnt); + ::fuse_destroy(fs); } FuseMountPoint(const FuseMountPoint &) = delete; |
