[BACK]Return to fdesc_vnops.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / miscfs / fdesc

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

Diff for /src/sys/miscfs/fdesc/fdesc_vnops.c between version 1.90 and 1.91

version 1.90, 2006/03/01 12:38:21 version 1.91, 2006/04/04 14:18:35
Line 786  fdesc_readdir(v)
Line 786  fdesc_readdir(v)
                         default:                          default:
                                 KASSERT(fdp != NULL);                                  KASSERT(fdp != NULL);
                                 j = (int)i - 2;                                  j = (int)i - 2;
                                 if (fdp->fd_ofiles[j] == NULL ||                                  if (fdp == NULL || fdp->fd_ofiles[j] == NULL ||
                                     FILE_IS_USABLE(fdp->fd_ofiles[j]) == 0)                                      FILE_IS_USABLE(fdp->fd_ofiles[j]) == 0)
                                         continue;                                          continue;
                                 d.d_fileno = j + FD_STDIN;                                  d.d_fileno = j + FD_STDIN;

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91

CVSweb <webmaster@jp.NetBSD.org>