[PATCH v4 39/40] bsd-user: Move qemu_guest_random_seed_main to same as linux-user
Warner Losh <[email protected]>
| Newsgroups | gmane.comp.emulators.qemu |
|---|---|
| Message-ID | <[email protected]> |
Linux-user initializes this before doing the environment stuff. Go ahead and move it there for consistency, though it doesn't matter since we don't use it until later. Acked-by: Richard Henderson <[email protected]> Signed-off-by: Warner Losh <[email protected]> --- bsd-user/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bsd-user/main.c b/bsd-user/main.c index 2fbbfc3d86..13cd752b99 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -541,9 +541,6 @@ int main(int argc, char **argv) do_strace = 1; } - target_environ = envlist_to_environ(envlist, NULL); - envlist_free(envlist); - { Error *err = NULL; if (seed_optarg != NULL) { @@ -557,6 +554,9 @@ int main(int argc, char **argv) } } + target_environ = envlist_to_environ(envlist, NULL); + envlist_free(envlist); + /* * Now that page sizes are configured we can do * proper page alignment for guest_base. -- 2.55.0