From: Jim Meyering Date: Fri, 6 Jan 2006 10:14:30 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v6.0~955 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7dcf7e3788d3691997fce35a537e5ee21369cc8d;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 7450d7828e..1cbad52ffa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,15 @@ -2006-01-05 Jim Meyering +2006-01-06 Jim Meyering * Version 6.0-cvs. + * src/remove.c (rm_1): Remove `static' attribute on local `status'. + First off, the attribute should have been `volatile' (not static) + to avoid longjmp-related risk of clobber. Secondly, now there is + no longer any risk of a local variable being clobbered, so there's + no need for any attribute at all. + +2006-01-05 Jim Meyering + * src/remove.c: Give a few functions the inline attribute. (AD_pop_and_chdir): Use gotos to avoid some duplication. (AD_push): Rewrite an assertion so that the entire computation