diff options
Diffstat (limited to 'src/reflist.c')
-rw-r--r-- | src/reflist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/reflist.c b/src/reflist.c index d17dca2f..fc61a7e4 100644 --- a/src/reflist.c +++ b/src/reflist.c @@ -168,6 +168,7 @@ static void recursive_free(Reflection *refl) while ( refl != NULL ) { Reflection *next = refl->next; + pthread_mutex_destroy(&refl->lock); free(refl); refl = next; } |