[Libsysio-commit] HEAD: libsysio/src mount.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2009-09-21 21:30:53
|
Update of /cvsroot/libsysio/libsysio/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14094/src Modified Files: mount.c Log Message: In the submount routine, at the end we were releasing the pnode we just tried to cover. That should have been a PUT. It is now :) Index: mount.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/mount.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -w -b -B -p -r1.33 -r1.34 --- mount.c 31 Aug 2009 21:38:29 -0000 1.33 +++ mount.c 21 Sep 2009 21:30:42 -0000 1.34 @@ -538,7 +538,7 @@ _sysio_sub_fsswop_mount(const char *sour FS_REF(nameidata.nd_pno->p_mount->mnt_fs); *mntp = mnt; } - P_RELE(nameidata.nd_pno); + P_PUT(nameidata.nd_pno); return err; } |