Document recent checkins.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 26 Sep 2003 07:43:06 +0000 (07:43 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 26 Sep 2003 07:43:06 +0000 (07:43 +0000)
ChangeLog
lib/ChangeLog

index 546a8545a282dfad54faa90b18acb0691e5d3097..0240e083dfe1e74ca84dd17d8ad819a464135af2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        * modules/xgetdomainname: New file.
        * MODULES.html.sh (func_all_modules): Add getdomainname, xgetdomainname.
 
+2003-09-24  Paul Eggert  <eggert@twinsun.com>
+
+       * README: Document assumptions that 'int' is at least 32 bits
+       wide, that integer arithmetic is 2's complement without overflow,
+       that there are no holes in integer values, that adding sizes of
+       two nonoverlapping objects can't overflow, and that all-bits-zero
+       yields scalar zero.  Fix spelling and capitalization typos.
+
+2003-09-24  Simon Josefsson  <jas@extundo.com>
+
+       * modules/xgethostname: Add xgethostname.h.
+
 2003-09-17  Paul Eggert  <eggert@twinsun.com>
 
        * gnulib-tool: Use "test -h", not "test -L", for portability
index aa2153a4b1e5ed1d6ea5d280e8ed9b120cf3a3d1..fb74cdb5757e663a9223d370d9b8a4eddd285b6b 100644 (file)
@@ -1,3 +1,20 @@
+2003-09-26  Paul Eggert  <eggert@twinsun.com>
+
+       * error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
+       (error_tail): Do not loop, reallocating temporary buffer, since
+       the original size is big enough.  This avoids one potential size
+       overflow calculation.  Check for size overflow when calculating
+       temporary buffer size.  Free temporary buffer when done, if
+       it was allocated with malloc; this closes a memory leak.
+
+       Merge error changes from glibc.
+
+       * error.c, error.h: Update copyright notice header to match glibc.
+       * error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
+       (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
+       Disable cancellation while printing error.
+       * error.h: Prepend __ to parameter names.
+
 2003-09-25  Karl Berry  <karl@gnu.org>
 
        * argp-fmtstream.c, argp-help.c: update from libc.
        * getdomainname.h: New file.
        * getdomainname.c: New file.
 
+2003-09-24  Paul Eggert  <eggert@twinsun.com>
+
+       * linebuffer.c (freebuffer): Don't free the argument, just
+       the buffer associated with the argument.  Bug reported by
+       Simon Josefsson.
+
 2003-09-19  Karl Berry  <karl@gnu.org>
 
        * argp.h: update from libc.