Kaydet (Commit) f1aca5bf authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Fix infinite loop introduced by accident

Change-Id: I4aee6214123b14f40e01850e1814a4e2d089ec8c
üst f9e88410
......@@ -218,6 +218,7 @@ public class Bootstrap extends NativeActivity
while (argv.length > 0 &&
argv[0].matches("[A-Z_]+=.*")) {
putenv(argv[0]);
argv = Arrays.copyOfRange(argv, 1, argv.length-1);
}
// argv[0] will be replaced by android_main() in lo-bootstrap.c by the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment