From 7aa50cfb3cfc34382018b167fe3623490fbb064c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 27 Jun 2000 13:10:24 +0000 Subject: (change_dir_owner): Don't set errno before invoking savedir, and assume that errno is nonzero if savedir fails. --- src/chown.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/chown.c b/src/chown.c index 07337f236..5998fdf4c 100644 --- a/src/chown.c +++ b/src/chown.c @@ -262,18 +262,12 @@ change_dir_owner (const char *dir, uid_t user, gid_t group, unsigned pathlength; /* Bytes allocated for `path'. */ int errors = 0; - errno = 0; name_space = savedir (dir, statp->st_size); if (name_space == NULL) { - if (errno) - { - if (force_silent == 0) - error (0, errno, "%s", dir); - return 1; - } - else - error (1, 0, _("virtual memory exhausted")); + if (force_silent == 0) + error (0, errno, "%s", dir); + return 1; } dirlength = strlen (dir) + 1; /* + 1 is for the trailing '/'. */ -- cgit v1.2.3-70-g09d2