If fuse_session_mount() fails (or was never called in the first place)
we end up with the default fd value which happens to be 0. It hurts
long-running processes, which lifetime extends beyond session's
lifetime.
pthread_key_delete(se->pipe_key);
pthread_mutex_destroy(&se->lock);
free(se->cuse_data);
- close(se->fd);
+ if (se->fd != -1)
+ close(se->fd);
destroy_mount_opts(se->mo);
free(se);
}
fprintf(stderr, "fuse: failed to allocate fuse object\n");
goto out1;
}
+ se->fd = -1;
se->conn.max_write = UINT_MAX;
se->conn.max_readahead = UINT_MAX;