diff options
author | "Vladimir N. Oleynik" | 2006-02-28 08:23:27 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" | 2006-02-28 08:23:27 +0000 |
commit | 73804d6f7e6220e220ac167bd77ef210ea6e3d68 (patch) | |
tree | f2c617ba2047113c2661a3fd5fc87997dc37e184 | |
parent | 8bbee852149faacd89558be2449a69d75c4cb9cf (diff) | |
download | busybox-73804d6f7e6220e220ac167bd77ef210ea6e3d68.zip busybox-73804d6f7e6220e220ac167bd77ef210ea6e3d68.tar.gz |
more security: don't start shell code from argv
-rw-r--r-- | miscutils/eject.c | 2 | ||||
-rw-r--r-- | util-linux/setarch.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/eject.c b/miscutils/eject.c index 2643f36..189f545 100644 --- a/miscutils/eject.c +++ b/miscutils/eject.c @@ -43,7 +43,7 @@ extern int eject_main(int argc, char **argv) } if (ioctl(bb_xopen(device, (O_RDONLY | O_NONBLOCK)), (flags ? CDROMCLOSETRAY : CDROMEJECT))) { - bb_perror_msg_and_die(device); + bb_perror_msg_and_die("%s", device); } return (EXIT_SUCCESS); } diff --git a/util-linux/setarch.c b/util-linux/setarch.c index 4a5853a..33588e4 100644 --- a/util-linux/setarch.c +++ b/util-linux/setarch.c @@ -49,5 +49,5 @@ retry: execvp(argv[0], argv); failure: - bb_perror_msg_and_die(argv[0]); + bb_perror_msg_and_die("%s", argv[0]); } |