diff options
author | Jeremy Allison <jra@samba.org> | 2010-12-21 18:11:40 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-12-22 03:59:18 +0100 |
commit | 88c3e505e997cbb97fdcecbeea241238b2e48f70 (patch) | |
tree | e424ae6bd6188a7d01ec21593fec10456b1315fd | |
parent | e8f7c60ec25fd6ab40357ad44baf98918346a22a (diff) | |
download | samba-88c3e505e997cbb97fdcecbeea241238b2e48f70.tar.gz samba-88c3e505e997cbb97fdcecbeea241238b2e48f70.tar.bz2 samba-88c3e505e997cbb97fdcecbeea241238b2e48f70.zip |
Fix a warning message.
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Wed Dec 22 03:59:18 CET 2010 on sn-devel-104
-rw-r--r-- | source3/utils/net_ads.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index ec5ecab65e..48df564792 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -1464,9 +1464,10 @@ int net_ads_join(struct net_context *c, int argc, const char **argv) /* exit from this block using machine creds */ ads_destroy(&ads_dns); } -#endif done: +#endif + TALLOC_FREE(r); TALLOC_FREE( ctx ); |