{
char *type = NULL;
char *source;
+ char *dup_source = NULL;
const char *mountpoint;
char *basename;
char *options = NULL;
int suid = 1;
int pass_fuse_fd = 0;
int drop_privileges = 0;
+ char *dev_fd_mountpoint = NULL;
progname = argv[0];
basename = strrchr(argv[0], '/');
}
opt = strtok(NULL, ",");
}
+ free(opts);
}
}
if (!type) {
if (source) {
- type = xstrdup(source);
+ dup_source = xstrdup(source);
+ type = dup_source;
source = strchr(type, '#');
if (source)
*source++ = '\0';
if (pass_fuse_fd) {
int fuse_fd = prepare_fuse_fd(mountpoint, type, options);
- char *dev_fd_mountpoint = xrealloc(NULL, 20);
+ dev_fd_mountpoint = xrealloc(NULL, 20);
snprintf(dev_fd_mountpoint, 20, "/dev/fd/%u", fuse_fd);
mountpoint = dev_fd_mountpoint;
}
add_arg(&command, options);
}
+ free(options);
+ free(dev_fd_mountpoint);
+ free(dup_source);
+ free(setuid_name);
+
execl("/bin/sh", "/bin/sh", "-c", command, NULL);
fprintf(stderr, "%s: failed to execute /bin/sh: %s\n", progname,
strerror(errno));