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
nexedi
linux
Commits
9cb01e6b
Commit
9cb01e6b
authored
Nov 25, 2002
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] missing kmalloc check in qnx4fs
parent
c2058eab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
fs/qnx4/inode.c
fs/qnx4/inode.c
+4
-0
No files found.
fs/qnx4/inode.c
View file @
9cb01e6b
...
@@ -324,6 +324,10 @@ static const char *qnx4_checkroot(struct super_block *sb)
...
@@ -324,6 +324,10 @@ static const char *qnx4_checkroot(struct super_block *sb)
if
(
!
strncmp
(
rootdir
->
di_fname
,
QNX4_BMNAME
,
sizeof
QNX4_BMNAME
))
{
if
(
!
strncmp
(
rootdir
->
di_fname
,
QNX4_BMNAME
,
sizeof
QNX4_BMNAME
))
{
found
=
1
;
found
=
1
;
qnx4_sb
(
sb
)
->
BitMap
=
kmalloc
(
sizeof
(
struct
qnx4_inode_entry
),
GFP_KERNEL
);
qnx4_sb
(
sb
)
->
BitMap
=
kmalloc
(
sizeof
(
struct
qnx4_inode_entry
),
GFP_KERNEL
);
if
(
!
qnx4_sb
(
sb
)
->
BitMap
)
{
brelse
(
bh
);
return
"not enough memory for bitmap inode"
;
}
memcpy
(
qnx4_sb
(
sb
)
->
BitMap
,
rootdir
,
sizeof
(
struct
qnx4_inode_entry
)
);
/* keep bitmap inode known */
memcpy
(
qnx4_sb
(
sb
)
->
BitMap
,
rootdir
,
sizeof
(
struct
qnx4_inode_entry
)
);
/* keep bitmap inode known */
break
;
break
;
}
}
...
...
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