diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-11-25 11:08:20 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-11-26 17:40:16 +0100 |
commit | 1ce71652fc07fae67ddb5254856dd030502d509c (patch) | |
tree | ee51e917980b47cf348c696f2d990a9b33697336 | |
parent | 1b95d5ee81d8621ff54d65ca3700c977c738610a (diff) | |
download | coreutils-1ce71652fc07fae67ddb5254856dd030502d509c.tar.xz |
* src/remove.c (AD_ensure_initialized): New function.
after statement.
Signed-off-by: Paul Eggert <eggert@cs.ucla.edu>
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/remove.c | 19 |
2 files changed, 16 insertions, 6 deletions
@@ -6,6 +6,9 @@ Update the caller in remove_dir. (AD_pop_and_chdir): Return prev_dir rather than storing through a pointer argument. All uses changed. + (AD_ensure_initialized): New function. + (AD_mark_helper): Use it, to avoid the need for declaration + after statement. 2006-11-25 Jim Meyering <jim@meyering.net> diff --git a/src/remove.c b/src/remove.c index 03b7837a4..f6fee66a9 100644 --- a/src/remove.c +++ b/src/remove.c @@ -540,10 +540,9 @@ AD_pop_and_chdir (DIR **dirp, Dirstack_state *ds) return prev_dir; } -/* Initialize *HT if it is NULL. - Insert FILENAME into HT. */ -static void -AD_mark_helper (Hash_table **ht, char *filename) +/* Initialize *HT if it is NULL. Return *HT. */ +static Hash_table * +AD_ensure_initialized (Hash_table **ht) { if (*ht == NULL) { @@ -552,7 +551,16 @@ AD_mark_helper (Hash_table **ht, char *filename) if (*ht == NULL) xalloc_die (); } - void *ent = hash_insert (*ht, filename); + + return *ht; +} + +/* Initialize *HT if it is NULL. + Insert FILENAME into HT. */ +static void +AD_mark_helper (Hash_table **ht, char *filename) +{ + void *ent = hash_insert (AD_ensure_initialized (ht), filename); if (ent == NULL) xalloc_die (); else @@ -560,7 +568,6 @@ AD_mark_helper (Hash_table **ht, char *filename) if (ent != filename) free (filename); } - } /* Mark FILENAME (in current directory) as unremovable. */ |