hash table UPDATE optional cb for HT free

Allows freeing items in the hash table.
diff --git a/src/tree_schema_common.c b/src/tree_schema_common.c
index bbdd676..1f08b13 100644
--- a/src/tree_schema_common.c
+++ b/src/tree_schema_common.c
@@ -496,7 +496,7 @@
     }
 
 cleanup:
-    lyht_free(ids_global);
+    lyht_free(ids_global, NULL);
     return ret;
 }
 
@@ -610,7 +610,7 @@
     }
 
 cleanup:
-    lyht_free(ids_global);
+    lyht_free(ids_global, NULL);
     return ret;
 }
 
@@ -650,7 +650,7 @@
     }
 
 cleanup:
-    lyht_free(ht);
+    lyht_free(ht, NULL);
     return ret;
 }
 
@@ -682,7 +682,7 @@
     }
 
 cleanup:
-    lyht_free(ht);
+    lyht_free(ht, NULL);
     return ret;
 }