diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-02-09 06:05:01 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-02-09 06:05:01 +0000 |
commit | 07f56040466b8d93000a42909a24172ac2069c73 (patch) | |
tree | fa1366c513e765680f747e802ce864f136d8a175 /init.c | |
parent | d7ce5e780282148f86941ebb6babc7ae4b50b07e (diff) |
Fix a possible /linuxrc crash.
-Erik
Diffstat (limited to 'init.c')
-rw-r--r-- | init.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -879,7 +879,8 @@ extern int init_main(int argc, char **argv) /* Fix up argv[0] to be certain we claim to be init */ strncpy(argv[0], "init", strlen(argv[0])+1); - strncpy(argv[1], "\0", strlen(argv[1])+1); + if (argc > 1) + strncpy(argv[1], "\0", strlen(argv[1])+1); /* Now run everything that needs to be run */ |