diff options
author | Jeremy Allison <jra@samba.org> | 2012-05-31 15:06:58 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-05-31 16:08:44 -0700 |
commit | 8fd02fa2d6bdedbda1657a15f602bb4384367251 (patch) | |
tree | 1895c33c04d9dc0b3376308a126a037748a9c2ae /source3/nmbd | |
parent | f6e41026f89deb5393e239b9dc83b287e5c7d6ed (diff) | |
download | samba-8fd02fa2d6bdedbda1657a15f602bb4384367251.tar.gz samba-8fd02fa2d6bdedbda1657a15f602bb4384367251.tar.bz2 samba-8fd02fa2d6bdedbda1657a15f602bb4384367251.zip |
Forward port of Richard Sharpe's <realrichardsharpe@gmail.com> fix for bug #8970 - Possible memory leaks in the samba master process.
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 98a531026a..d464e7e0f6 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -382,11 +382,12 @@ static bool reload_nmbd_services(bool test) set_remote_machine_name("nmbd", False); if ( lp_loaded() ) { - const char *fname = lp_configfile(); + char *fname = lp_configfile(); if (file_exist(fname) && !strcsequal(fname,get_dyn_CONFIGFILE())) { set_dyn_CONFIGFILE(fname); test = False; } + TALLOC_FREE(fname); } if ( test && !lp_file_list_changed() ) |