Fix environ termination, by Andreas Schwab.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3027 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2007-06-27 11:12:42 +00:00
parent 8dfdb87c8d
commit 403f14ef1e
1 changed files with 1 additions and 1 deletions

View File

@ -1819,7 +1819,7 @@ int main(int argc, char **argv)
continue;
*(dst++) = strdup(*wrk);
}
dst = NULL; /* NULL terminate target_environ */
*dst = NULL; /* NULL terminate target_environ */
if (loader_exec(filename, argv+optind, target_environ, regs, info) != 0) {
printf("Error loading %s\n", filename);