summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 0fbe4a13d3..bfc5eb2a8d 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -179,6 +179,31 @@ static BOOL set_my_netbios_names(const char *name, int i)
return True;
}
+/***********************************************************************
+ Free memory allocated to global objects
+***********************************************************************/
+
+void gfree_names(void)
+{
+ SAFE_FREE( smb_myname );
+ SAFE_FREE( smb_myworkgroup );
+ SAFE_FREE( smb_scope );
+ free_netbios_names_array();
+}
+
+void gfree_all( void )
+{
+ gfree_names();
+ gfree_loadparm();
+ gfree_case_tables();
+ gfree_debugsyms();
+ gfree_charcnv();
+ gfree_messsges();
+
+ /* release the talloc null_context memory last */
+ talloc_nc_free();
+}
+
const char *my_netbios_names(int i)
{
return smb_my_netbios_names[i];