Memory Leak Reduction
diff --git a/nlsr_route.c b/nlsr_route.c
index 2a25747..e84b0a7 100644
--- a/nlsr_route.c
+++ b/nlsr_route.c
@@ -50,9 +50,9 @@
 		print_routing_table();
 		print_npt();		
 
-		struct hashtb_param param_me = {0};
-		nlsr->map = hashtb_create(sizeof(struct map_entry), &param_me);
-		nlsr->rev_map = hashtb_create(sizeof(struct map_entry), &param_me);
+		//struct hashtb_param param_me = {0};
+		nlsr->map = hashtb_create(sizeof(struct map_entry), NULL);
+		nlsr->rev_map = hashtb_create(sizeof(struct map_entry), NULL);
 		make_map();
 		assign_mapping_number();		
 		print_map();