]> git.sur5r.net Git - openldap/commitdiff
ITS#2549, init memctx to NULL. Also reset ber memctx to NULL when freeing.
authorHoward Chu <hyc@openldap.org>
Sun, 25 May 2003 01:32:39 +0000 (01:32 +0000)
committerHoward Chu <hyc@openldap.org>
Sun, 25 May 2003 01:32:39 +0000 (01:32 +0000)
servers/slapd/connection.c
servers/slapd/operation.c

index 90ba3505dbf212507e3f4786577ed5917b329500..1c5281e34064fea235c35fb600c869c0ee404c54 100644 (file)
@@ -892,7 +892,7 @@ connection_operation( void *ctx, void *arg_v )
        ber_tag_t oldtag = tag;
 #endif /* SLAPD_MONITOR */
        Connection *conn = op->o_conn;
-       void *memctx;
+       void *memctx = NULL;
        ber_len_t memsiz;
 
        ldap_pvt_thread_mutex_lock( &num_ops_mutex );
@@ -930,6 +930,10 @@ connection_operation( void *ctx, void *arg_v )
        op->o_tmpmemctx = memctx;
        op->o_tmpmfuncs = &sl_mfuncs;
        if ( tag != LDAP_REQ_ADD && tag != LDAP_REQ_MODIFY ) {
+               /* Note - the ber and its buffer are already allocated from
+                * regular memory; this only affects subsequent mallocs that
+                * ber_scanf may invoke.
+                */
                ber_set_option( op->o_ber, LBER_OPT_BER_MEMCTX, memctx );
        }
 
index 95e28288b5882ab35f5b0b1596b94d8f410d9107..537263b7d54c0a98b9c6600397bd4099aea20646 100644 (file)
@@ -45,6 +45,10 @@ slap_op_free( Operation *op )
        assert( LDAP_STAILQ_NEXT(op, o_next) == NULL );
 
        if ( op->o_ber != NULL ) {
+               /* Note - the ber and its buffer are in regular memory,
+                * so make sure not to use sl_free here.
+                */
+               ber_set_option( op->o_ber, LBER_OPT_BER_MEMCTX, NULL );
                ber_free( op->o_ber, 1 );
        }
        if ( op->o_dn.bv_val != NULL ) {