chore: don't warn about an unavoidable free()

This commit is contained in:
Marcus Holland-Moritz 2024-10-20 23:44:40 +02:00
parent bf9be86456
commit 7a478e5623

View File

@ -1365,6 +1365,7 @@ int run_fuse(struct fuse_args& args,
fuse_session_destroy(session);
}
// NOLINTNEXTLINE
::free(fuse_opts.mountpoint);
#else
err = fuse_main(args.argc, args.argv, &fsops, &userdata);