]> git.sur5r.net Git - openldap/commitdiff
Add error handling cleanup
authorKurt Zeilenga <kurt@openldap.org>
Wed, 5 Jun 2002 15:51:42 +0000 (15:51 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 5 Jun 2002 15:51:42 +0000 (15:51 +0000)
libraries/libldap/getdn.c
libraries/libldap/vlvctrl.c

index 37e9a827ab91eeb0e2be824de28fd1565bc7e41d..4dd2279ee5fd0ab31748b52fb4eca7e39aa5c5cf 100644 (file)
@@ -90,6 +90,8 @@ ldap_get_dn( LDAP *ld, LDAPMessage *entry )
        Debug( LDAP_DEBUG_TRACE, "ldap_get_dn\n", 0, 0, 0 );
 #endif
 
+       assert( ld != NULL );
+       assert( LDAP_VALID(ld) );
        assert( entry != NULL );
 
        tmp = *entry->lm_ber;   /* struct copy */
index b1638cfe893ef63de613b0542f681b44f5f90108..0ee5ed2ab4a96b2e9fc0d6d302dac7edb31a1807 100644 (file)
@@ -80,6 +80,7 @@ ldap_create_vlv_control( LDAP *ld,
        BerElement *ber;
 
        assert( ld != NULL );
+       assert( LDAP_VALID( ld ) );
        assert( vlvinfop != NULL );
        assert( ctrlp != NULL );
 
@@ -203,6 +204,7 @@ ldap_parse_vlv_control(
        ber_len_t berLen;
 
        assert( ld != NULL );
+       assert( LDAP_VALID( ld ) );
 
        if (contextp) {
                *contextp = NULL;        /* Make sure we return a NULL if error occurs. */