[BACK]Return to cd9660_vfsops.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / fs / cd9660

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/fs/cd9660/cd9660_vfsops.c between version 1.70.4.1 and 1.70.4.2

version 1.70.4.1, 2010/07/03 01:19:49 version 1.70.4.2, 2011/05/19 03:43:00
Line 716  cd9660_vget_internal(struct mount *mp, i
Line 716  cd9660_vget_internal(struct mount *mp, i
                 return (0);                  return (0);
   
         /* Allocate a new vnode/iso_node. */          /* Allocate a new vnode/iso_node. */
         if ((error = getnewvnode(VT_ISOFS, mp, cd9660_vnodeop_p, &vp)) != 0) {          error = getnewvnode(VT_ISOFS, mp, cd9660_vnodeop_p, NULL, &vp);
           if (error) {
                 *vpp = NULLVP;                  *vpp = NULLVP;
                 return (error);                  return (error);
         }          }

Legend:
Removed from v.1.70.4.1  
changed lines
  Added in v.1.70.4.2

CVSweb <webmaster@jp.NetBSD.org>