projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
967bf62
)
[PATCH] fix create_write_pipe() error check
author
Akinobu Mita
<
[email protected]
>
Tue, 28 Nov 2006 20:29:43 +0000
(12:29 -0800)
committer
Linus Torvalds
<
[email protected]
>
Wed, 29 Nov 2006 01:26:50 +0000
(17:26 -0800)
The return value of create_write_pipe()/create_read_pipe() should be
checked by IS_ERR().
Signed-off-by: Akinobu Mita <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
kernel/kmod.c
patch
|
blob
|
history
diff --git
a/kernel/kmod.c
b/kernel/kmod.c
index bb4e29d924e4ff29567a962e7b643e0c1c875896..2b76dee284964c82ca42a81b2ddd1463f72d001d 100644
(file)
--- a/
kernel/kmod.c
+++ b/
kernel/kmod.c
@@
-307,14
+307,14
@@
int call_usermodehelper_pipe(char *path, char **argv, char **envp,
return 0;
f = create_write_pipe();
- if (
!f
)
- return
-ENOMEM
;
+ if (
IS_ERR(f)
)
+ return
PTR_ERR(f)
;
*filp = f;
f = create_read_pipe(f);
- if (
!f
) {
+ if (
IS_ERR(f)
) {
free_write_pipe(*filp);
- return
-ENOMEM
;
+ return
PTR_ERR(f)
;
}
sub_info.stdin = f;