]> git.sur5r.net Git - openldap/commitdiff
Fix ITS#1721, NULL reqdata->bv_val
authorHoward Chu <hyc@openldap.org>
Thu, 6 Jun 2002 05:42:26 +0000 (05:42 +0000)
committerHoward Chu <hyc@openldap.org>
Thu, 6 Jun 2002 05:42:26 +0000 (05:42 +0000)
servers/slapd/extended.c

index be8bba53e9cc9b60549b453504aac05cf76435b5..d28908295b899d1be62a4f54ec9ee9ae6e43f31c 100644 (file)
@@ -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 ) {