Author: kib
Date: Tue Dec 18 04:27:33 2012
New Revision: 244375
URL: http://svnweb.freebsd.org/changeset/base/244375

Log:
  MFC r244239:
  Fix a typo, resulting in the NULL pointer dereference.

Modified:
  stable/9/sys/ufs/ufs/ufs_quota.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/ufs/ufs/ufs_quota.c
==============================================================================
--- stable/9/sys/ufs/ufs/ufs_quota.c    Tue Dec 18 04:23:44 2012        
(r244374)
+++ stable/9/sys/ufs/ufs/ufs_quota.c    Tue Dec 18 04:27:33 2012        
(r244375)
@@ -1052,7 +1052,7 @@ again:
                error = vget(vp, LK_EXCLUSIVE | LK_INTERLOCK, td);
                if (error) {
                        if (error == ENOENT) {
-                               MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
+                               MNT_VNODE_FOREACH_ACTIVE_ABORT(mp, mvp);
                                goto again;
                        }
                        continue;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9
To unsubscribe, send any mail to "[email protected]"

Reply via email to