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
6077eb5c
Commit
6077eb5c
authored
Jan 17, 2003
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correctly check the mmap return value.
parent
9ebf50f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
arch/um/kernel/tt/mem_user.c
arch/um/kernel/tt/mem_user.c
+1
-1
No files found.
arch/um/kernel/tt/mem_user.c
View file @
6077eb5c
...
...
@@ -26,7 +26,7 @@ void remap_data(void *segment_start, void *segment_end, int w)
(
unsigned
long
)
segment_start
;
data
=
create_mem_file
(
size
);
if
((
addr
=
mmap
(
NULL
,
size
,
PROT_WRITE
|
PROT_READ
,
MAP_SHARED
,
data
,
0
))
<
0
){
MAP_SHARED
,
data
,
0
))
==
MAP_FAILED
){
perror
(
"mapping new data segment"
);
exit
(
1
);
}
...
...
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