aboutsummaryrefslogtreecommitdiff
path: root/miscutils/mountpoint.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/mountpoint.c')
-rw-r--r--miscutils/mountpoint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/mountpoint.c b/miscutils/mountpoint.c
index 46b2d4e26..771df5588 100644
--- a/miscutils/mountpoint.c
+++ b/miscutils/mountpoint.c
@@ -46,8 +46,8 @@ int mountpoint_main(int argc, char **argv)
if (S_ISDIR(st.st_mode)) {
dev_t st_dev = st.st_dev;
ino_t st_ino = st.st_ino;
- char *p;
- bb_xasprintf(&p, "%s/..", arg);
+ char *p = bb_xasprintf("%s/..", arg);
+
if (stat(p, &st) == 0) {
short ret = (st_dev != st.st_dev) ||
(st_dev == st.st_dev && st_ino == st.st_ino);