1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

[s3]testparm: prevent "no stackframe around" warning.

gfree_loadparm and TALLOC_FREE(frame) were in the wrong order.

Michael
This commit is contained in:
Michael Adam 2008-10-18 14:51:25 +02:00
parent b3b6d8f3f9
commit 15f0a4eadb

View File

@ -436,8 +436,8 @@ rameter is ignored when using CUPS libraries.\n",
}
done:
TALLOC_FREE(frame);
gfree_loadparm();
TALLOC_FREE(frame);
return ret;
}