diff options
author | Simo Sorce <idra@samba.org> | 2006-10-15 23:14:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:21:04 -0500 |
commit | 59b66744f7318d8197f0d2029bf3b641dafa327e (patch) | |
tree | 03d44cfb4bc655088a411552743531246e06974b /source4/torture/ldap | |
parent | a719444f68c7448f53ce61dc9f02e552a98fedcf (diff) | |
download | samba-59b66744f7318d8197f0d2029bf3b641dafa327e.tar.gz samba-59b66744f7318d8197f0d2029bf3b641dafa327e.tar.bz2 samba-59b66744f7318d8197f0d2029bf3b641dafa327e.zip |
r19299: Fix possible memleaks
(This used to be commit 6fad80bb09113a60689061a2de67711c9924708b)
Diffstat (limited to 'source4/torture/ldap')
-rw-r--r-- | source4/torture/ldap/schema.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/torture/ldap/schema.c b/source4/torture/ldap/schema.c index 69750826ce..1f4ec22825 100644 --- a/source4/torture/ldap/schema.c +++ b/source4/torture/ldap/schema.c @@ -124,6 +124,7 @@ static BOOL test_search_rootDSE(struct ldb_context *ldb, struct test_rootDSE *ro if (ret != LDB_SUCCESS) { return False; } else if (r->count != 1) { + talloc_free(r); return False; } |