summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libihash/ihash.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libihash/ihash.c b/libihash/ihash.c
index ae1cf12a..c6143a57 100644
--- a/libihash/ihash.c
+++ b/libihash/ihash.c
@@ -418,7 +418,10 @@ hurd_ihash_locp_find (hurd_ihash_t ht,
int idx;
if (ht->size == 0)
- return NULL;
+ {
+ *slot = NULL;
+ return NULL;
+ }
idx = find_index (ht, key);
*slot = &ht->items[idx].value;