~ubuntu-branches/debian/jessie/389-ds-base/jessie

« back to all changes in this revision

Viewing changes to ldap/servers/slapd/operation.c

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2014-07-08 15:50:11 UTC
  • mfrom: (0.2.2)
  • Revision ID: package-import@ubuntu.com-20140708155011-r66lvtioamqwaype
Tags: 1.3.2.19-1
* New upstream release.
* admin_scripts.diff: Updated to fix more bashisms.
* watch: Update the url.
* Install failedbinds.py and logregex.py scripts.
* init: Use status from init-functions.
* control: Update my email.

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
                o->o_connid = 0;
182
182
                o->o_next = NULL;
183
183
                o->o_flags= flags;
 
184
                o->o_reverse_search_state = 0;
184
185
                if ( config_get_accesslog_level() & LDAP_DEBUG_TIMING ) {
185
186
                        o->o_interval = PR_IntervalNow();
186
187
                } else {
236
237
                slapi_ch_free_string( &(*op)->o_authtype );
237
238
                if ( (*op)->o_searchattrs != NULL ) {
238
239
                        charray_free( (*op)->o_searchattrs );
 
240
                        (*op)->o_searchattrs = NULL;
239
241
                }
240
242
                if ( NULL != (*op)->o_params.request_controls ) {
241
243
                        ldap_controls_free( (*op)->o_params.request_controls );
 
244
                        (*op)->o_params.request_controls = NULL;
242
245
                }
243
246
                if ( NULL != (*op)->o_results.result_controls ) {
244
247
                        ldap_controls_free( (*op)->o_results.result_controls );
 
248
                        (*op)->o_results.result_controls = NULL;
245
249
                }
246
250
                slapi_ch_free_string(&(*op)->o_results.result_matched);
247
251
#if defined(USE_OPENLDAP)