Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vesta
u-boot-2015.04
Commits
20e5ed13
Commit
20e5ed13
authored
16 years ago
by
Jean-Christophe PLAGNIOL-VILLARD
Committed by
Wolfgang Denk
16 years ago
Browse files
Options
Downloads
Patches
Plain Diff
API: remove duplicate syscall check
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD
<
plagnioj@jcrosoft.com
>
parent
f3612a7b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api/api.c
+1
-1
1 addition, 1 deletion
api/api.c
with
1 addition
and
1 deletion
api/api.c
+
1
−
1
View file @
20e5ed13
...
...
@@ -582,7 +582,7 @@ int syscall(int call, int *retval, ...)
va_list
ap
;
int
rv
;
if
(
call
<
0
||
call
>=
calls_no
||
calls_table
[
call
]
==
NULL
)
{
if
(
call
<
0
||
call
>=
calls_no
)
{
debugf
(
"invalid call #%d
\n
"
,
call
);
return
0
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment