X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fxgetcwd.c;h=89d98847ebe65952f29c4a223b26aa38331c8087;hb=d6913e92bfd13a918b19223fb676e9c0f136400e;hp=7ab2204682587acdc16722c412912c88c7dbcef0;hpb=16157cc455337732a6afe4785a75f6344e49a43f;p=gnulib.git diff --git a/lib/xgetcwd.c b/lib/xgetcwd.c index 7ab220468..89d98847e 100644 --- a/lib/xgetcwd.c +++ b/lib/xgetcwd.c @@ -1,5 +1,6 @@ /* xgetcwd.c -- return current directory with unlimited length - Copyright (C) 1992, 1996 Free Software Foundation, Inc. + + Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,65 +16,28 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* Written by David MacKenzie . */ +/* Written by Jim Meyering. */ #if HAVE_CONFIG_H # include #endif -#include -#include -#ifndef errno -extern int errno; -#endif - -#include -#include "pathmax.h" - -#if HAVE_GETCWD -char *getcwd (); -#else -char *getwd (); -# define getcwd(Buf, Max) getwd (Buf) -#endif +#include "xgetcwd.h" -/* Amount to increase buffer size by in each try. */ -#define PATH_INCR 32 +#include -char *xmalloc (); -char *xrealloc (); -void free (); +#include "getcwd.h" +#include "xalloc.h" -/* Return the current directory, newly allocated, arbitrarily long. - Return NULL and set errno on error. */ +/* Return the current directory, newly allocated. + Upon an out-of-memory error, call xalloc_die. + Upon any other type of error, return NULL. */ char * -xgetcwd () +xgetcwd (void) { - char *cwd; - char *ret; - unsigned path_max; - - errno = 0; - path_max = (unsigned) PATH_MAX; - path_max += 2; /* The getcwd docs say to do this. */ - - cwd = xmalloc (path_max); - - errno = 0; - while ((ret = getcwd (cwd, path_max)) == NULL && errno == ERANGE) - { - path_max += PATH_INCR; - cwd = xrealloc (cwd, path_max); - errno = 0; - } - - if (ret == NULL) - { - int save_errno = errno; - free (cwd); - errno = save_errno; - return NULL; - } + char *cwd = getcwd (NULL, 0); + if (! cwd && errno == ENOMEM) + xalloc_die (); return cwd; }