summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-11-25 11:08:20 +0100
committerJim Meyering <jim@meyering.net>2006-11-26 17:40:16 +0100
commit1ce71652fc07fae67ddb5254856dd030502d509c (patch)
treeee51e917980b47cf348c696f2d990a9b33697336 /src
parent1b95d5ee81d8621ff54d65ca3700c977c738610a (diff)
downloadcoreutils-1ce71652fc07fae67ddb5254856dd030502d509c.tar.xz
* src/remove.c (AD_ensure_initialized): New function.
after statement. Signed-off-by: Paul Eggert <eggert@cs.ucla.edu>
Diffstat (limited to 'src')
-rw-r--r--src/remove.c19
1 files changed, 13 insertions, 6 deletions
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. */