diff options
author | Patrick Mooney <pmooney@pfmooney.com> | 2019-03-18 15:28:27 +0000 |
---|---|---|
committer | Patrick Mooney <pmooney@pfmooney.com> | 2019-03-18 18:35:01 +0000 |
commit | 90e27ef5fc2bdeb7f9934f4e77140ef5f1aa9392 (patch) | |
tree | d2bc1bebe96fa972da877fa01f2b921bc4129287 /usr/src/uts/common/exec/java/java.c | |
parent | f596c0900965f1168f07b20b94337167854044c3 (diff) | |
download | illumos-joyent-90e27ef5fc2bdeb7f9934f4e77140ef5f1aa9392.tar.gz |
OS-6158 signed math leads getelfshdr astray
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Reviewed by: Cody Peter Mello <melloc@writev.io>
Approved by: Mike Gerdts <mike.gerdts@joyent.com>
Diffstat (limited to 'usr/src/uts/common/exec/java/java.c')
-rw-r--r-- | usr/src/uts/common/exec/java/java.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/exec/java/java.c b/usr/src/uts/common/exec/java/java.c index 5170fda5cb..a61a6f105f 100644 --- a/usr/src/uts/common/exec/java/java.c +++ b/usr/src/uts/common/exec/java/java.c @@ -21,7 +21,7 @@ /* * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. - * Copyright 2015, Joyent, Inc. + * Copyright 2019 Joyent, Inc. */ /* @@ -85,7 +85,7 @@ char *jexec_arg = "-jar"; /*ARGSUSED3*/ static int javaexec(vnode_t *vp, struct execa *uap, struct uarg *args, - struct intpdata *idatap, int level, long *execsz, int setid, + struct intpdata *idatap, int level, size_t *execsz, int setid, caddr_t execfile, cred_t *cred, int *brand_action) { struct intpdata idata; |