Properly NULL-terminate the environment.

Andreas.

--- linux-user/main.c.~1.116.~  2007-06-25 12:39:20.000000000 +0200
+++ linux-user/main.c   2007-06-27 12:51:43.000000000 +0200
@@ -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);

-- 
Andreas Schwab, SuSE Labs, [EMAIL PROTECTED]
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Reply via email to