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
aa98ad44
Commit
aa98ad44
authored
Jul 22, 2002
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] USB: rio500.c bugfix
patch from Silvio Cesare to fix signed problem.
parent
831fdda6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/usb/misc/rio500.c
drivers/usb/misc/rio500.c
+2
-2
No files found.
drivers/usb/misc/rio500.c
View file @
aa98ad44
...
...
@@ -146,7 +146,7 @@ ioctl_rio(struct inode *inode, struct file *file, unsigned int cmd,
retval
=
-
EFAULT
;
goto
err_out
;
}
if
(
rio_cmd
.
length
>
PAGE_SIZE
)
{
if
(
rio_cmd
.
length
<
0
||
rio_cmd
.
length
>
PAGE_SIZE
)
{
retval
=
-
EINVAL
;
goto
err_out
;
}
...
...
@@ -216,7 +216,7 @@ ioctl_rio(struct inode *inode, struct file *file, unsigned int cmd,
retval
=
-
EFAULT
;
goto
err_out
;
}
if
(
rio_cmd
.
length
>
PAGE_SIZE
)
{
if
(
rio_cmd
.
length
<
0
||
rio_cmd
.
length
>
PAGE_SIZE
)
{
retval
=
-
EINVAL
;
goto
err_out
;
}
...
...
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