We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 521f03c commit c94b7caCopy full SHA for c94b7ca
CHANGELOG
@@ -4,6 +4,9 @@ Legend:
4
- Bug fixed
5
! Known issue / missing feature
6
7
+0.6.6 - 2023-9-18
8
+ - Minor fix in cleanup code.
9
+
10
0.6.5 - 2022-07-30
11
- bug count of time
12
- call to resolver_init being done unnecessarily in some cases
src/connection.c
@@ -298,5 +298,6 @@ conn_free ( void *data )
298
void
299
connection_free ( void )
300
{
301
- hashtable_min_detroy ( ht_connections, conn_free );
+ if ( ht_connections )
302
+ hashtable_min_detroy ( ht_connections, conn_free );
303
}
0 commit comments