Author: jhay
Date: Wed Jun 24 06:42:13 2009
New Revision: 194811
URL: http://svn.freebsd.org/changeset/base/194811

Log:
  Do not stop the loop when an empty or deleted directory entry is found.
  Rather just skip over it.

Modified:
  head/sys/geom/geom_redboot.c

Modified: head/sys/geom/geom_redboot.c
==============================================================================
--- head/sys/geom/geom_redboot.c        Wed Jun 24 06:15:18 2009        
(r194810)
+++ head/sys/geom/geom_redboot.c        Wed Jun 24 06:42:13 2009        
(r194811)
@@ -195,7 +195,9 @@ parse_fis_directory(u_char *buf, size_t 
         */
        fisdir = redbcfg = NULL;
        *(tail = &head) = NULL;
-       for (i = 0; fd < efd && fd->name[0] != 0xff; i++, fd++) {
+       for (i = 0; fd < efd; i++, fd++) {
+               if (fd->name[0] == 0xff)
+                       continue;
                if (match(fd->name, FISDIR_NAME))
                        fisdir = fd;
                else if (match(fd->name, REDBCFG_NAME))
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to