From: Ulrich Drepper Date: Fri, 20 Aug 1999 23:45:31 +0000 (+0000) Subject: Undo last change. X-Git-Tag: cvs/glibc_2-1-2~85 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7eecb53b20149a5ee437252a80cd24d9cb558d6;p=thirdparty%2Fglibc.git Undo last change. --- diff --git a/sysdeps/unix/sysv/linux/getcwd.c b/sysdeps/unix/sysv/linux/getcwd.c index d529b9a1813..fe28e2d894d 100644 --- a/sysdeps/unix/sysv/linux/getcwd.c +++ b/sysdeps/unix/sysv/linux/getcwd.c @@ -58,7 +58,7 @@ __getcwd (char *buf, size_t size) if (no_syscall_getcwd && !have_new_dcache) return generic_getcwd (buf, size); - if (size <= 0) + if (size == 0) { if (buf != NULL) { @@ -150,7 +150,7 @@ __getcwd (char *buf, size_t size) __set_errno (save_errno); /* Don't put restrictions on the length of the path unless the user does. */ - if (size <= 0) + if (size == 0) { free (path); path = NULL; @@ -158,7 +158,7 @@ __getcwd (char *buf, size_t size) result = generic_getcwd (path, size); - if (result == NULL && buf == NULL && size > 0) + if (result == NULL && buf == NULL && size != 0) free (path); return result;