Commit 9a87ad3d authored by Miklos Szeredi's avatar Miklos Szeredi

fuse: release: private_data cannot be NULL

Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
parent 267d8444
...@@ -246,14 +246,9 @@ static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode) ...@@ -246,14 +246,9 @@ static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
void fuse_release_common(struct file *file, int opcode) void fuse_release_common(struct file *file, int opcode)
{ {
struct fuse_file *ff; struct fuse_file *ff = file->private_data;
struct fuse_req *req; struct fuse_req *req = ff->reserved_req;
ff = file->private_data;
if (unlikely(!ff))
return;
req = ff->reserved_req;
fuse_prepare_release(ff, file->f_flags, opcode); fuse_prepare_release(ff, file->f_flags, opcode);
if (ff->flock) { if (ff->flock) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment