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/winbindd | |
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/winbindd')
-rw-r--r-- | source3/winbindd/winbindd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index 22056e26ca..248f747ee4 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -65,11 +65,12 @@ static bool reload_services_file(const char *lfile) bool ret; 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); } + TALLOC_FREE(fname); } /* if this is a child, restore the logfile to the special |