mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Fix ITS#1721, NULL reqdata->bv_val
This commit is contained in:
parent
e864c84ed9
commit
456a9ed952
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ do_extended(
|
|||
refs = NULL;
|
||||
|
||||
rc = (ext->ext_main)( conn, op,
|
||||
reqoid, reqdata,
|
||||
reqoid, reqdata->bv_val ? reqdata : NULL,
|
||||
&rspoid, &rspdata, &rspctrls, &text, &refs );
|
||||
|
||||
if( rc != SLAPD_ABANDON ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue