patch-2.2.18 linux/fs/binfmt_java.c
Next file: linux/fs/binfmt_misc.c
Previous file: linux/fs/binfmt_em86.c
Back to the patch index
Back to the overall index
- Lines: 22
- Date:
Sat Oct 28 14:53:48 2000
- Orig file:
v2.2.17/fs/binfmt_java.c
- Orig date:
Fri Apr 21 12:46:41 2000
diff -u --new-file --recursive --exclude-from /usr/src/exclude v2.2.17/fs/binfmt_java.c linux/fs/binfmt_java.c
@@ -74,8 +74,8 @@
bprm->p = copy_strings(1, &i_name, bprm->page, bprm->p, 2);
bprm->argc++;
- if (!bprm->p)
- return -E2BIG;
+ if ((long)bprm->p < 0)
+ return (long)bprm->p;
/*
* OK, now restart the process with the interpreter's dentry.
*/
@@ -121,8 +121,8 @@
bprm->p = copy_strings(1, &i_name, bprm->page, bprm->p, 2);
bprm->argc++;
- if (!bprm->p)
- return -E2BIG;
+ if ((long)bprm->p < 0)
+ return (long)bprm->p;
/*
* OK, now restart the process with the interpreter's dentry.
*/
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)