diff options
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 3 |
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); |