Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
9a87ad3d
Commit
9a87ad3d
authored
Feb 22, 2017
by
Miklos Szeredi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse: release: private_data cannot be NULL
Signed-off-by:
Miklos Szeredi
<
mszeredi@redhat.com
>
parent
267d8444
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
fs/fuse/file.c
fs/fuse/file.c
+2
-7
No files found.
fs/fuse/file.c
View file @
9a87ad3d
...
...
@@ -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
)
{
struct
fuse_file
*
ff
;
struct
fuse_req
*
req
;
ff
=
file
->
private_data
;
if
(
unlikely
(
!
ff
))
return
;
struct
fuse_file
*
ff
=
file
->
private_data
;
struct
fuse_req
*
req
=
ff
->
reserved_req
;
req
=
ff
->
reserved_req
;
fuse_prepare_release
(
ff
,
file
->
f_flags
,
opcode
);
if
(
ff
->
flock
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment