summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-09-04 20:28:35 +0000
committerJim Meyering <jim@meyering.net>2001-09-04 20:28:35 +0000
commit09026d541382184981887dc592bddc6974568a98 (patch)
tree173d19c1a927461e8e0a97b524b71b78d31c4dc9 /lib
parentc01a38db4d78aea9457d664430dbd287b0f71907 (diff)
downloadcoreutils-09026d541382184981887dc592bddc6974568a98.tar.xz
*** empty log message ***
Diffstat (limited to 'lib')
-rw-r--r--lib/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 8f831c474..5ee35b40e 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,5 +1,15 @@
2001-09-04 Paul Eggert <eggert@twinsun.com>
+ * xgetcwd.c: Revert some of the previous change; intead,
+ fix the HAVE_GETCWD_NULL code to behave more like the
+ !HAVE_GETCWD_NULL code used to.
+
+ Include "xalloc.h".
+ (xgetcwd): Do not return NULL when memory is exhausted; instead,
+ invoke xalloc_die.
+
+2001-09-04 Paul Eggert <eggert@twinsun.com>
+
* xreadlink.c (xreadlink): Omit size_t* arg. All uses changed.
Use ssize_t, not int, to store result of readlink.
Check for ssize_t overflow as well as size_t overflow,