[Libsysio-commit] HEAD: libsysio/drivers/native fs_native.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2005-02-04 00:22:02
|
Update of /cvsroot/libsysio/libsysio/drivers/native In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9618/native Modified Files: fs_native.c Log Message: On a failed mount, an acquired FS was first released, then gone'd. The gone caused a double-free. Removed. Index: fs_native.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/drivers/native/fs_native.c,v retrieving revision 1.54 retrieving revision 1.55 diff -u -w -b -B -p -r1.54 -r1.55 --- fs_native.c 25 Jan 2005 00:36:50 -0000 1.54 +++ fs_native.c 4 Feb 2005 00:21:45 -0000 1.55 @@ -494,7 +494,6 @@ error: _sysio_pb_gone(rootpb); if (fs) { FS_RELE(fs); - _sysio_fs_gone(fs); nfs = NULL; } if (nfs) |