diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-06-16 21:08:15 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-10-30 13:41:55 -0700 |
commit | d0b6b79323726e47b1e9e399870ab063883874d0 (patch) | |
tree | 8467a01d4a87688e1f65cd56756c4e5b10418cc3 /linux-user/loader.h | |
parent | 86cf82dc9fa366d6758f4b1f9587c8d2f6062bad (diff) |
linux-user: Replace bprm->fd with bprm->src.fd
There are only a couple of uses of bprm->fd remaining.
Migrate to the other field.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user/loader.h')
-rw-r--r-- | linux-user/loader.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux-user/loader.h b/linux-user/loader.h index da6591fff0..a0834290e7 100644 --- a/linux-user/loader.h +++ b/linux-user/loader.h @@ -74,7 +74,6 @@ struct linux_binprm { char buf[BPRM_BUF_SIZE] __attribute__((aligned)); ImageSource src; abi_ulong p; - int fd; int e_uid, e_gid; int argc, envc; char **argv; |