summaryrefslogtreecommitdiff
path: root/source3/utils/testparm.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-10-18 14:51:25 +0200
committerMichael Adam <obnox@samba.org>2008-10-18 15:36:16 +0200
commit15f0a4eadb0f8f32a6b997b33ec4e316ada4eebf (patch)
treefd24c2dbf6827a1eede14541baf643f9f5f7072d /source3/utils/testparm.c
parentb3b6d8f3f91824df11b3f1e61c8ad443c8c65458 (diff)
downloadsamba-15f0a4eadb0f8f32a6b997b33ec4e316ada4eebf.tar.gz
samba-15f0a4eadb0f8f32a6b997b33ec4e316ada4eebf.tar.bz2
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/utils/testparm.c')
-rw-r--r--source3/utils/testparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index 05682efe5d..da129cf7c0 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;
}