ITS#7909 fix slap_callback init

This commit is contained in:
Howard Chu 2014-07-30 06:55:36 -07:00
parent e091e0bb63
commit e5dae640f2

View File

@ -178,7 +178,7 @@ rwm_callback_get( Operation *op )
{ {
rwm_op_cb *roc; rwm_op_cb *roc;
roc = op->o_tmpalloc( sizeof( struct rwm_op_cb ), op->o_tmpmemctx ); roc = op->o_tmpcalloc( 1, sizeof( struct rwm_op_cb ), op->o_tmpmemctx );
roc->cb.sc_cleanup = rwm_op_cleanup; roc->cb.sc_cleanup = rwm_op_cleanup;
roc->cb.sc_response = NULL; roc->cb.sc_response = NULL;
roc->cb.sc_next = op->o_callback; roc->cb.sc_next = op->o_callback;