diff options
author | Michael Adam <obnox@samba.org> | 2008-10-18 14:52:49 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-10-18 15:36:17 +0200 |
commit | ef9ccf5d200c64622358338504b49e03b6708145 (patch) | |
tree | 6b37d1e1090b46c3c5680d98dfd0135b59a79622 /source3/param | |
parent | 15f0a4eadb0f8f32a6b997b33ec4e316ada4eebf (diff) | |
download | samba-ef9ccf5d200c64622358338504b49e03b6708145.tar.gz samba-ef9ccf5d200c64622358338504b49e03b6708145.tar.bz2 samba-ef9ccf5d200c64622358338504b49e03b6708145.zip |
[s3]test_lp_load: fix "no talloc stackframe around" message
gfree_loadparm() and TALLOC_FREE(frame) were in the wron order.
Michael
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/test_lp_load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/test_lp_load.c b/source3/param/test_lp_load.c index db1bad4726..1ec123e70a 100644 --- a/source3/param/test_lp_load.c +++ b/source3/param/test_lp_load.c @@ -81,8 +81,8 @@ int main(int argc, const char **argv) done: - TALLOC_FREE(frame); gfree_loadparm(); + TALLOC_FREE(frame); return ret; } |