aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2004-06-23 13:54:33 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2004-06-23 13:54:33 +0000
commitb32105803093b758df251dcdfd5dc4d07636dfd1 (patch)
treeec0ad351828f5bcc58430fdba6ba21bedd9d7071 /lib
parente79dc7eea007ff1040939293294b59fff9df3179 (diff)
fix
Diffstat (limited to 'lib')
-rw-r--r--lib/fuse.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index eeae295..fe392f3 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -865,17 +865,14 @@ static void do_flush(struct fuse *f, struct fuse_in_header *in)
static void do_release(struct fuse *f, struct fuse_in_header *in,
struct fuse_open_in *arg)
{
- char *path;
-
- if (!f->op.release) {
- send_reply(f, in, -ENOSYS, NULL, 0);
- return;
- }
+ if (f->op.release) {
+ char *path;
- path = get_path(f, in->ino);
- if (path != NULL) {
- f->op.release(path, arg->flags);
- free(path);
+ path = get_path(f, in->ino);
+ if (path != NULL) {
+ f->op.release(path, arg->flags);
+ free(path);
+ }
}
}