From: Jim Meyering Date: Sun, 16 Nov 2003 12:26:02 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v5.1.0~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f4ee4073cfcf8c88ee3fe1acf137c70a5719b24;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 3bf42a0514..56efbc4b5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,27 @@ -2003-11-09 Jim Meyering +2003-11-16 Jim Meyering * Version 5.1.0. + Fix read-from-free'd-buffer error detected by valgrind. + * src/csplit.c (remove_line): Don't return a pointer to data in + a freed buffer. Instead, arrange to free the buffer on the + subsequent call. + + * tests/misc/csplit: New test for above fix. + +2003-11-11 Jim Meyering + + * src/ls.c (extract_dirs_from_files): Avoid useless copy operations. + This avoids a warning from valgrind about memcpy with overlapping + source and destination. + + * configure.ac: Require automake-1.7.8. + +2003-11-09 Jim Meyering + + FIXME: update coreutils.texi: + chmod's new options: --preserve-root and --no-preserve-root. + * Use automake-1.7.9. Regenerate dependent files. * src/rm.c: Support new options: --preserve-root and --no-preserve-root. @@ -303,10 +323,6 @@ 2003-10-14 Jim Meyering - FIXME: update coreutils.texi: - chmod's new options: --preserve-root and --no-preserve-root. - chown and chgrp have new options: -H -L -P - * src/ls.c (decode_switches) [TIOCGWINSZ]: Comment out the warning-inducing test, ws.ws_col <= SIZE_MAX, since it was always true on Linux.