]> git.sur5r.net Git - openldap/commitdiff
don't dereference pointer in case of error
authorQuanah Gibson-Mount <quanah@openldap.org>
Fri, 30 Oct 2009 19:07:18 +0000 (19:07 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Fri, 30 Oct 2009 19:07:18 +0000 (19:07 +0000)
servers/slapd/back-bdb/monitor.c

index a333c2132d99c27c79e321991ba7210e3751ca51..598ca6a19147fcdbca59d76ed43be3dc2940f16b 100644 (file)
@@ -280,8 +280,9 @@ bdb_monitor_initialize( void )
                        Debug( LDAP_DEBUG_ANY, LDAP_XSTRING(bdb_monitor_initialize)
                                ": register_at failed\n",
                                0, 0, 0 );
+               } else {
+                       (*s_at[ i ].ad)->ad_type->sat_flags |= SLAP_AT_HIDE;
                }
-               (*s_at[ i ].ad)->ad_type->sat_flags |= SLAP_AT_HIDE;
        }
 
        for ( i = 0; s_oc[ i ].desc != NULL; i++ ) {
@@ -290,8 +291,9 @@ bdb_monitor_initialize( void )
                        Debug( LDAP_DEBUG_ANY, LDAP_XSTRING(bdb_monitor_initialize)
                                ": register_oc failed\n",
                                0, 0, 0 );
+               } else {
+                       (*s_oc[ i ].oc)->soc_flags |= SLAP_OC_HIDE;
                }
-               (*s_oc[ i ].oc)->soc_flags |= SLAP_OC_HIDE;
        }
 
        return 0;