From ef9ccf5d200c64622358338504b49e03b6708145 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 18 Oct 2008 14:52:49 +0200 Subject: [s3]test_lp_load: fix "no talloc stackframe around" message gfree_loadparm() and TALLOC_FREE(frame) were in the wron order. Michael --- source3/param/test_lp_load.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/param/test_lp_load.c') 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; } -- cgit