mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Use of bzero is not portable
This commit is contained in:
parent
238f6333d2
commit
090270e965
@ -263,8 +263,7 @@ dup_comp_filter (
|
||||
ComponentFilter **out_f )
|
||||
{
|
||||
int rc;
|
||||
ComponentFilter dup_f;
|
||||
bzero( &dup_f, sizeof(dup_f));
|
||||
ComponentFilter dup_f = {0};
|
||||
|
||||
if ( !in_f ) return LDAP_PROTOCOL_ERROR;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user