Monday, June 2, 2014

[389-commits] ldap/servers

ldap/servers/plugins/mep/mep.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit fa31627bdc7c33d5fb9d72e73690d6056d2999e6
Author: Mark Reynolds <mreynolds@redhat.com>
Date: Mon Jun 2 09:34:28 2014 -0400

Ticket 47466 - Fix coverity issue

12632 - resource leak in mep.c

https://fedorahosted.org/389/ticket/47644

diff --git a/ldap/servers/plugins/mep/mep.c b/ldap/servers/plugins/mep/mep.c
index 9b3d5d2..6dbddbc 100644
--- a/ldap/servers/plugins/mep/mep.c
+++ b/ldap/servers/plugins/mep/mep.c
@@ -1415,7 +1415,8 @@ mep_add_managed_entry(struct configEntry *config,
"mep_add_managed_entry: Unable to create a managed "
"entry from origin entry \"%s\" using config "
"\"%s\".\n", slapi_entry_get_dn(origin), slapi_sdn_get_dn(config->sdn));
- return -1;
+ result = -1;
+ goto bail;
} else {
/* Copy the managed entry DN to use when
* creating the pointer attribute. */


--
389 commits mailing list
389-commits@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-commits

No comments:

Post a Comment