aboutsummaryrefslogtreecommitdiff
path: root/coreutils/readlink.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-08-03 19:00:01 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-08-03 19:03:32 +0200
commit39194f030918b87eeb3e11e94cfa05f575fb47b4 (patch)
tree97ea35e2c5984c5c6757ff9a540630ada4b234d5 /coreutils/readlink.c
parent663ae52676eae3b0fdc6bb968ff6497279a034a4 (diff)
downloadbusybox-w32-39194f030918b87eeb3e11e94cfa05f575fb47b4.tar.gz
busybox-w32-39194f030918b87eeb3e11e94cfa05f575fb47b4.tar.bz2
busybox-w32-39194f030918b87eeb3e11e94cfa05f575fb47b4.zip
new NOFORKs: pwdx,kill[all5],ttysize,realpath,readlink NOEXECs: date,resize
function old new delta run_nofork_applet 258 280 +22 readlink_main 112 123 +11 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/0 up/down: 33/0) Total: 33 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/readlink.c')
-rw-r--r--coreutils/readlink.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/coreutils/readlink.c b/coreutils/readlink.c
index 9690290e3..7f8d6b239 100644
--- a/coreutils/readlink.c
+++ b/coreutils/readlink.c
@@ -20,7 +20,7 @@
20//config: help 20//config: help
21//config: Enable the readlink option (-f). 21//config: Enable the readlink option (-f).
22 22
23//applet:IF_READLINK(APPLET(readlink, BB_DIR_USR_BIN, BB_SUID_DROP)) 23//applet:IF_READLINK(APPLET_NOFORK(readlink, readlink, BB_DIR_USR_BIN, BB_SUID_DROP, readlink))
24 24
25//kbuild:lib-$(CONFIG_READLINK) += readlink.o 25//kbuild:lib-$(CONFIG_READLINK) += readlink.o
26 26
@@ -85,6 +85,7 @@ int readlink_main(int argc UNUSED_PARAM, char **argv)
85 if (!(opt & 4)) /* not -v */ 85 if (!(opt & 4)) /* not -v */
86 logmode = LOGMODE_NONE; 86 logmode = LOGMODE_NONE;
87 87
88 /* NOFORK: only one alloc is allowed; must free */
88 if (opt & 1) { /* -f */ 89 if (opt & 1) { /* -f */
89 buf = xmalloc_realpath(fname); 90 buf = xmalloc_realpath(fname);
90 } else { 91 } else {
@@ -94,9 +95,7 @@ int readlink_main(int argc UNUSED_PARAM, char **argv)
94 if (!buf) 95 if (!buf)
95 return EXIT_FAILURE; 96 return EXIT_FAILURE;
96 printf((opt & 2) ? "%s" : "%s\n", buf); 97 printf((opt & 2) ? "%s" : "%s\n", buf);
97 98 free(buf);
98 if (ENABLE_FEATURE_CLEAN_UP)
99 free(buf);
100 99
101 fflush_stdout_and_exit(EXIT_SUCCESS); 100 fflush_stdout_and_exit(EXIT_SUCCESS);
102} 101}