FreeBSD Bugzilla – Attachment 5522 Details for
Bug 13143
changing mount flags on a mounted filesystem not in fstab segfaults mount(8)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 597 bytes, created by
Adrian Chadd
on 1999-08-14 21:30:01 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Adrian Chadd
Created:
1999-08-14 21:30:01 UTC
Size:
597 bytes
patch
obsolete
>Index: mount.c >=================================================================== >RCS file: /home/ncvs/src/sbin/mount/mount.c,v >retrieving revision 1.31 >diff -u -r1.31 mount.c >--- mount.c 1999/05/07 05:31:00 1.31 >+++ mount.c 1999/08/14 20:16:04 >@@ -594,7 +594,11 @@ > if (opts == NULL) > return strdup(""); > >- fstab = strdup(fstab); >+ if (fstab == NULL) { >+ fstab = strdup(""); >+ } else { >+ fstab = strdup(fstab); >+ } > > /* remove meta options from list */ > remopt(fstab, MOUNT_META_OPTION_FSTAB);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 13143
: 5522