Clean-up ipxnet hash table in host_name_lookup_cleanup. Should fix the buildbot

test suite failures.

svn path=/trunk/; revision=51447
This commit is contained in:
Evan Huus 2013-08-20 22:41:49 +00:00
parent 2cfb8df682
commit 21ad5c11b2
1 changed files with 5 additions and 0 deletions

View File

@ -2919,6 +2919,11 @@ host_name_lookup_cleanup(void)
{
_host_name_lookup_cleanup();
if(ipxnet_hash_table){
g_hash_table_destroy(ipxnet_hash_table);
ipxnet_hash_table = NULL;
}
if(ipv4_hash_table){
g_hash_table_destroy(ipv4_hash_table);
ipv4_hash_table = NULL;