mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-27 02:23:35 +08:00
(hash_get_next): Fix a thinko: when ENTRY is the
last one in a bucket, advance to the next bucket. From Alexandre Duret-Lutz.
This commit is contained in:
parent
b510774dbb
commit
a5565c08a3
@ -267,7 +267,7 @@ hash_get_first (const Hash_table *table)
|
||||
|
||||
/* Return the user data for the entry following ENTRY, where ENTRY has been
|
||||
returned by a previous call to either `hash_get_first' or `hash_get_next'.
|
||||
Return NULL if there is no more entries. */
|
||||
Return NULL if there are no more entries. */
|
||||
|
||||
void *
|
||||
hash_get_next (const Hash_table *table, const void *entry)
|
||||
@ -284,7 +284,7 @@ hash_get_next (const Hash_table *table, const void *entry)
|
||||
return cursor->next->data;
|
||||
|
||||
/* Find first entry in any subsequent bucket. */
|
||||
for (; bucket < table->bucket_limit; bucket++)
|
||||
while (++bucket < table->bucket_limit)
|
||||
if (bucket->data)
|
||||
return bucket->data;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user