Skip to content
Snippets Groups Projects
Commit 56cba7f9 authored by Howard Chu's avatar Howard Chu
Browse files

In ldap_extended_operation_s, check for NULL retoidp and retdatap

before storing NULL.
parent c5de2fd6
No related branches found
No related tags found
No related merge requests found
......@@ -138,8 +138,8 @@ ldap_extended_operation_s(
return( ld->ld_errno );
}
*retoidp = NULL;
*retdatap = NULL;
if ( retoidp != NULL ) *retoidp = NULL;
if ( retdatap != NULL ) *retdatap = NULL;
rc = ldap_parse_extended_result( ld, res, retoidp, retdatap, 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment