diff options
author | Michael Adam <obnox@samba.org> | 2008-10-18 14:51:25 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-10-18 15:36:16 +0200 |
commit | 15f0a4eadb0f8f32a6b997b33ec4e316ada4eebf (patch) | |
tree | fd24c2dbf6827a1eede14541baf643f9f5f7072d /source3 | |
parent | b3b6d8f3f91824df11b3f1e61c8ad443c8c65458 (diff) | |
download | samba-15f0a4eadb0f8f32a6b997b33ec4e316ada4eebf.tar.gz samba-15f0a4eadb0f8f32a6b997b33ec4e316ada4eebf.tar.xz samba-15f0a4eadb0f8f32a6b997b33ec4e316ada4eebf.zip |
[s3]testparm: prevent "no stackframe around" warning.
gfree_loadparm and TALLOC_FREE(frame) were in the wrong order.
Michael
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/testparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index 05682efe5dc..da129cf7c04 100644 --- a/source3/utils/testparm.c +++ b/source3/utils/testparm.c @@ -436,8 +436,8 @@ rameter is ignored when using CUPS libraries.\n", } done: - TALLOC_FREE(frame); gfree_loadparm(); + TALLOC_FREE(frame); return ret; } |