Skip to content
Snippets Groups Projects
Commit 4e4356cf authored by Howard Chu's avatar Howard Chu
Browse files

Fix redundant frees

parent b06eeff4
No related branches found
No related tags found
No related merge requests found
......@@ -422,10 +422,22 @@ oc_delete( ObjectClass *oc )
static void
oc_clean( ObjectClass *o )
{
if (o->soc_sups) ldap_memfree(o->soc_sups);
if (o->soc_required) ldap_memfree(o->soc_required);
if (o->soc_allowed) ldap_memfree(o->soc_allowed);
if (o->soc_oidmacro) ldap_memfree(o->soc_oidmacro);
if (o->soc_sups) {
ldap_memfree(o->soc_sups);
o->soc_sups = NULL;
}
if (o->soc_required) {
ldap_memfree(o->soc_required);
o->soc_required = NULL;
}
if (o->soc_allowed) {
ldap_memfree(o->soc_allowed);
o->soc_allowed = NULL;
}
if (o->soc_oidmacro) {
ldap_memfree(o->soc_oidmacro);
o->soc_oidmacro = NULL;
}
}
static void
......@@ -476,7 +488,7 @@ oc_next( ObjectClass **oc )
{
assert( oc != NULL );
#if 1 /* pedantic check */
#if 0 /* pedantic check: breaks when deleting an oc, don't use it. */
{
ObjectClass *tmp = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment