mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 23:25:48 +00:00
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>
This commit is contained in:
@ -39,7 +39,7 @@ static int prepare_binprm(struct linux_binprm *bprm)
|
||||
int mode;
|
||||
int retval;
|
||||
|
||||
if (fstat(bprm->fd, &st) < 0) {
|
||||
if (fstat(bprm->src.fd, &st) < 0) {
|
||||
return -errno;
|
||||
}
|
||||
|
||||
@ -69,7 +69,7 @@ static int prepare_binprm(struct linux_binprm *bprm)
|
||||
bprm->e_gid = st.st_gid;
|
||||
}
|
||||
|
||||
retval = read(bprm->fd, bprm->buf, BPRM_BUF_SIZE);
|
||||
retval = read(bprm->src.fd, bprm->buf, BPRM_BUF_SIZE);
|
||||
if (retval < 0) {
|
||||
perror("prepare_binprm");
|
||||
exit(-1);
|
||||
@ -144,7 +144,6 @@ int loader_exec(int fdexec, const char *filename, char **argv, char **envp,
|
||||
{
|
||||
int retval;
|
||||
|
||||
bprm->fd = fdexec;
|
||||
bprm->src.fd = fdexec;
|
||||
bprm->filename = (char *)filename;
|
||||
bprm->argc = count(argv);
|
||||
|
Reference in New Issue
Block a user