]> git.sur5r.net Git - openldap/commitdiff
ITS#800: remove ldap_msgfree(NULL) abort
authorKurt Zeilenga <kurt@openldap.org>
Tue, 3 Oct 2000 19:21:46 +0000 (19:21 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 3 Oct 2000 19:21:46 +0000 (19:21 +0000)
CHANGES
libraries/libldap/result.c

diff --git a/CHANGES b/CHANGES
index 52a05256bee5278e80400097617340ffec662e8c..10aa0b381be4a03efdc9eaa19c95b3c7099fc278 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -9,6 +9,7 @@ OpenLDAP 2.0.X Engineering
        Fixed -lldap SASL ctx close bug (ITS#790)
        Fixed -lldap first/next attribute bug (ITS#778)
        Fixed -lldap (v2) rebind URL bug
+       Fixed -lldap msgfree NULL bug (ITS#800)
        Fixed -llber stringal len=0 bug
        Updated -llber bprint routine
        Build Environment
index f3370cdb2c31828c9b95d7b1dfafa635c114b643..814b471e33724b857d67a0205c136ed1c4b7bfa8 100644 (file)
@@ -820,8 +820,6 @@ ldap_msgfree( LDAPMessage *lm )
        LDAPMessage     *next;
        int             type = 0;
 
-       assert( lm != NULL );
-
        Debug( LDAP_DEBUG_TRACE, "ldap_msgfree\n", 0, 0, 0 );
 
        for ( ; lm != NULL; lm = next ) {