commit | 882cec3e40af63d1866cab7b1ce322d70f94c7df | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Mon Jul 26 12:05:12 2004 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Mon Jul 26 12:05:12 2004 +0000 |
tree | 3e4b67444ff26ab535ab703918f7337b14f69538 | |
parent | 29128cd4122c6f5edad767363615681bee1db04f [diff] |
YAEGASHI Takeshi writes: Hi, With the following /etc/fstab (any two or more lines of nfs), mount -a -t nfs causes a segmentation faults. server:/exports/aaa /mnt/aaa nfs defaults 0 0 server:/exprots/bbb /mnt/bbb nfs defaults 0 0 In util-linux/nfsmount.c, it overwrites malloc'ed pointer *mount_opts with a static pointer. With this patch it does proper memory realloc and data copy instead.