diff options
Diffstat (limited to 'src/fchash.c')
-rw-r--r-- | src/fchash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fchash.c b/src/fchash.c index 5c1a281b..ba6a4539 100644 --- a/src/fchash.c +++ b/src/fchash.c @@ -182,6 +182,7 @@ FcHashTableAddInternal (FcHashTable *table, { if (replace) { + bucket->next = b->next; if (!fc_atomic_ptr_cmpexch (prev, b, bucket)) goto retry; bucket = b; @@ -191,6 +192,7 @@ FcHashTableAddInternal (FcHashTable *table, goto destroy; } } + bucket->next = NULL; if (!fc_atomic_ptr_cmpexch (prev, b, bucket)) goto retry; |