summaryrefslogtreecommitdiff
path: root/lib/struniq.h
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2026-03-10 13:24:07 +0100
committerJörg Frings-Fürst <debian@jff.email>2026-03-10 13:24:07 +0100
commitcfd1f17f1a85d95ea12bca8dae42add7dad1ad11 (patch)
tree8016486f8ee7157213f2d09ff2491bfa9c94638a /lib/struniq.h
parent14e4d584d0121031ec40e6c35869745f1747ff29 (diff)
parent1403307d6e2fb4e7b5d97a35f40d1e95134561ab (diff)
Merge branch 'release/debian/1.4.2-1'HEADdebian/1.4.2-1master
Diffstat (limited to 'lib/struniq.h')
-rw-r--r--lib/struniq.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/lib/struniq.h b/lib/struniq.h
index e67ea0fe..a9686f1a 100644
--- a/lib/struniq.h
+++ b/lib/struniq.h
@@ -1,5 +1,5 @@
/* Define a file-local string uniquification function.
- Copyright (C) 2009-2024 Free Software Foundation, Inc.
+ Copyright (C) 2009-2026 Free Software Foundation, Inc.
This file is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
@@ -30,7 +30,7 @@
flexmember
lock
- stdbool
+ bool
thread-optim
*/
@@ -80,14 +80,11 @@ struniq (const char *string)
{
size_t hashcode = string_hash (string);
size_t slot = hashcode % STRUNIQ_HASH_TABLE_SIZE;
- size_t size;
- struct struniq_hash_node *new_node;
- struct struniq_hash_node *p;
- for (p = struniq_hash_table[slot]; p != NULL; p = p->next)
- if (strcmp (p->contents, string) == 0)
+ for (struct struniq_hash_node *p = struniq_hash_table[slot]; p != NULL; p = p->next)
+ if (streq (p->contents, string))
return p->contents;
- size = strlen (string) + 1;
- new_node =
+ size_t size = strlen (string) + 1;
+ struct struniq_hash_node *new_node =
(struct struniq_hash_node *)
malloc (FLEXSIZEOF (struct struniq_hash_node, contents, size));
if (new_node == NULL)
@@ -100,8 +97,8 @@ struniq (const char *string)
if (mt) gl_lock_lock (struniq_lock);
/* Check whether another thread already added the string while we were
waiting on the lock. */
- for (p = struniq_hash_table[slot]; p != NULL; p = p->next)
- if (strcmp (p->contents, string) == 0)
+ for (struct struniq_hash_node *p = struniq_hash_table[slot]; p != NULL; p = p->next)
+ if (streq (p->contents, string))
{
free (new_node);
new_node = p;