Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Mar 2008 19:08:53 +0000 (UTC)
From:      David Schultz <das@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/lib/libc/gen scandir.c
Message-ID:  <200803161908.m2GJ8rvp009244@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
das         2008-03-16 19:08:53 UTC

  FreeBSD src repository

  Modified files:
    lib/libc/gen         scandir.c 
  Log:
  scandir(3) previously used st_size to obtain an initial estimate
  of the array length needed to store all the directory entries.
  Although BSD has historically guaranteed that st_size is the size
  of the directory file, POSIX does not, and more to the point, some
  recent filesystems such as ZFS use st_size to mean something else.
  
  The fix is to not stat the directory at all, set the initial
  array size to 32 entries, and realloc it in powers of 2 if that
  proves insufficient.
  
  PR:     113668
  
  Revision  Changes    Path
  1.9       +3 -13     src/lib/libc/gen/scandir.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200803161908.m2GJ8rvp009244>