From: Mark Whitley Date: Mon, 12 Mar 2001 23:17:26 +0000 (-0000) Subject: Applied a patch from Brian Webb to fix a problem with mount on the Agenda PDA. X-Git-Tag: 0_50~58 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bd2e42f162dfd90b4356ace9e60410832e972a68;p=oweals%2Fbusybox.git Applied a patch from Brian Webb to fix a problem with mount on the Agenda PDA. Apparently, the mount() call does not like taking a stack allocated pointer. --- diff --git a/mount.c b/mount.c index a2d6053c0..58d436964 100644 --- a/mount.c +++ b/mount.c @@ -440,6 +440,7 @@ extern int mount_main(int argc, char **argv) device = strdup(m->mnt_fsname); directory = strdup(m->mnt_dir); filesystemType = strdup(m->mnt_type); + string_flags = strdup(string_flags); singlemount: rc = EXIT_SUCCESS; #ifdef BB_NFSMOUNT diff --git a/util-linux/mount.c b/util-linux/mount.c index a2d6053c0..58d436964 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -440,6 +440,7 @@ extern int mount_main(int argc, char **argv) device = strdup(m->mnt_fsname); directory = strdup(m->mnt_dir); filesystemType = strdup(m->mnt_type); + string_flags = strdup(string_flags); singlemount: rc = EXIT_SUCCESS; #ifdef BB_NFSMOUNT