fs.debug = options.count("debug") != 0;
fs.nosplice = options.count("nosplice") != 0;
- fs.source = std::string {realpath(argv[1], NULL)};
+ char* resolved_path = realpath(argv[1], NULL);
+ if (resolved_path == NULL)
+ warn("WARNING: realpath() failed with");
+ fs.source = std::string {resolved_path};
+ free(resolved_path);
return options;
}
}
}
+static void lo_destroy(void *userdata)
+{
+ struct lo_data *lo = (struct lo_data*) userdata;
+
+ while (lo->root.next != &lo->root) {
+ struct lo_inode* next = lo->root.next;
+ lo->root.next = next->next;
+ free(next);
+ }
+}
+
static void lo_getattr(fuse_req_t req, fuse_ino_t ino,
struct fuse_file_info *fi)
{
static const struct fuse_lowlevel_ops lo_oper = {
.init = lo_init,
+ .destroy = lo_destroy,
.lookup = lo_lookup,
.mkdir = lo_mkdir,
.mknod = lo_mknod,