[Fedora-directory-commits] ldapserver/ldap/servers/plugins/passthru ptpreop.c, 1.4, 1.5

Richard Allen Megginson (rmeggins) fedora-directory-commits at redhat.com
Wed Feb 8 18:59:29 UTC 2006


Author: rmeggins

Update of /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv14778

Modified Files:
	ptpreop.c 
Log Message:
Bug(s) fixed: 176302
Bug Description: crash in PTA plugin when bind returned controls
Reviewed by: Pete (Thanks!)
Fix Description: Fix by Ulf.  We are passing the ***LDAPControl when it 
needs the **LDAPControl.
Platforms tested: Fedora Core 4
Flag Day: no
Doc impact: no
QA impact: should be covered by regular nightly and manual testing
New Tests integrated into TET: none



Index: ptpreop.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/ptpreop.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ptpreop.c	19 Apr 2005 22:07:31 -0000	1.4
+++ ptpreop.c	8 Feb 2006 18:59:22 -0000	1.5
@@ -253,7 +253,7 @@
 	 * Send a result to our client.
 	 */
 	if ( resctrls != NULL ) {
-	    (void)slapi_pblock_set( pb, SLAPI_RESCONTROLS, &resctrls );
+	    (void)slapi_pblock_set( pb, SLAPI_RESCONTROLS, resctrls );
 	}
 	slapi_send_ldap_result( pb, rc, matcheddn, errmsg, 0, urls );
     }




More information about the Fedora-directory-commits mailing list