aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-26 18:17:42 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-26 18:17:42 +0000
commit666da5e2c6edec979966d16771818b32dcfafe04 (patch)
treec23e6a01fc51d8419c1562f70836148c705ac46a /util-linux
parent270c17c0e66ffe9fe0e47e891a583b5c6f8512ef (diff)
downloadbusybox-w32-666da5e2c6edec979966d16771818b32dcfafe04.tar.gz
busybox-w32-666da5e2c6edec979966d16771818b32dcfafe04.tar.bz2
busybox-w32-666da5e2c6edec979966d16771818b32dcfafe04.zip
merge post-1.3.0 fixes
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 661e26f19..b3e8c478c 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -1708,10 +1708,13 @@ int mount_main(int argc, char **argv)
1708 1708
1709 // Mount this thing. 1709 // Mount this thing.
1710 1710
1711 // NFS mounts want this to be xrealloc-able
1712 mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
1711 if (singlemount(mtcur, 1)) { 1713 if (singlemount(mtcur, 1)) {
1712 /* Count number of failed mounts */ 1714 /* Count number of failed mounts */
1713 rc++; 1715 rc++;
1714 } 1716 }
1717 free(mtcur->mnt_opts);
1715 } 1718 }
1716 } 1719 }
1717 if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab); 1720 if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);