* mount.cc (fs_names): Add trailing NULL element to avoid potential
SEGV in format_proc_filesystems.
This commit is contained in:
parent
0a42dbf12a
commit
bd142b93ae
|
@ -1,3 +1,8 @@
|
|||
2013-03-06 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* mount.cc (fs_names): Add trailing NULL element to avoid potential
|
||||
SEGV in format_proc_filesystems.
|
||||
|
||||
2013-03-01 Christopher Faylor <me.cygwin2013@cgf.cx>
|
||||
|
||||
* exceptions.cc (exception::handle): Eliminate buggy recursed variable;
|
||||
|
|
|
@ -1591,7 +1591,8 @@ fs_names_t fs_names[] = {
|
|||
{ "mvfs", false },
|
||||
{ "cifs", false },
|
||||
{ "nwfs", false },
|
||||
{ "ncfsd", false }
|
||||
{ "ncfsd", false },
|
||||
{ NULL, false }
|
||||
};
|
||||
|
||||
static mntent *
|
||||
|
|
Loading…
Reference in New Issue