diff options
| author | Pascal Bellard <pascal.bellard@ads-lu.com> | 2010-07-04 00:57:03 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-04 00:57:03 +0200 |
| commit | 21e8e8da6483c80a6054b06e48341968a7dccdd5 (patch) | |
| tree | 9980dc076107930f9706733c7cbedcf0e4099877 /mailutils | |
| parent | 7c1b2b5420d4208864b8bc6e07e90792aed94981 (diff) | |
| download | busybox-w32-21e8e8da6483c80a6054b06e48341968a7dccdd5.tar.gz busybox-w32-21e8e8da6483c80a6054b06e48341968a7dccdd5.tar.bz2 busybox-w32-21e8e8da6483c80a6054b06e48341968a7dccdd5.zip | |
libbb: introduce and use BB_EXECVP_or_die()
function old new delta
BB_EXECVP_or_die - 47 +47
time_main 1042 1043 +1
chrt_main 371 364 -7
ionice_main 292 282 -10
setsid_main 69 56 -13
nohup_main 236 223 -13
cttyhack_main 266 253 -13
chroot_main 94 81 -13
chpst_main 746 733 -13
timeout_main 297 279 -18
taskset_main 541 522 -19
vfork_child 67 45 -22
parse 975 953 -22
lpd_main 770 748 -22
launch_helper 192 170 -22
tcpudpsvd_main 1810 1782 -28
nice_main 190 156 -34
env_main 242 206 -36
run_command 221 174 -47
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/17 up/down: 48/-352) Total: -304 bytes
Signed-off-by: Pascal Bellard <pascal.bellard@ads-lu.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'mailutils')
| -rw-r--r-- | mailutils/mail.c | 3 | ||||
| -rw-r--r-- | mailutils/mime.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/mailutils/mail.c b/mailutils/mail.c index 49e72c32b..5eb99e13d 100644 --- a/mailutils/mail.c +++ b/mailutils/mail.c | |||
| @@ -67,8 +67,7 @@ void FAST_FUNC launch_helper(const char **argv) | |||
| 67 | if (!G.helper_pid) { | 67 | if (!G.helper_pid) { |
| 68 | // child: try to execute connection helper | 68 | // child: try to execute connection helper |
| 69 | // NB: SIGCHLD & SIGALRM revert to SIG_DFL on exec | 69 | // NB: SIGCHLD & SIGALRM revert to SIG_DFL on exec |
| 70 | BB_EXECVP(argv[0], (char **)argv); | 70 | BB_EXECVP_or_die((char**)argv); |
| 71 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); | ||
| 72 | } | 71 | } |
| 73 | 72 | ||
| 74 | // parent | 73 | // parent |
diff --git a/mailutils/mime.c b/mailutils/mime.c index 654b8731c..5eb8ef6f2 100644 --- a/mailutils/mime.c +++ b/mailutils/mime.c | |||
| @@ -288,8 +288,7 @@ static int parse(const char *boundary, char **argv) | |||
| 288 | xsetenv("CHARSET", charset); | 288 | xsetenv("CHARSET", charset); |
| 289 | xsetenv("ENCODING", encoding); | 289 | xsetenv("ENCODING", encoding); |
| 290 | xsetenv("FILENAME", filename); | 290 | xsetenv("FILENAME", filename); |
| 291 | BB_EXECVP(argv[0], argv); | 291 | BB_EXECVP_or_die(argv); |
| 292 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); | ||
| 293 | } | 292 | } |
| 294 | // parent dumps to fd[1] | 293 | // parent dumps to fd[1] |
| 295 | close(fd[0]); | 294 | close(fd[0]); |
