--- busybox-1.3.0/util-linux/mount.c	Wed Dec 13 01:10:01 2006
+++ busybox-1.3.0.mount/util-linux/mount.c	Fri Dec 15 22:55:37 2006
@@ -1693,10 +1693,13 @@
 
 			// Mount this thing.
 
+			// NFS mounts want this to be xrealloc-able
+			mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
 			if (singlemount(mtcur, 1)) {
 				/* Count number of failed mounts */
 				rc++;
 			}
+			free(mtcur->mnt_opts);
 		}
 	}
 	if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);
