mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 18:49:34 -05:00
Use of bzero is not portable
This commit is contained in:
parent
238f6333d2
commit
090270e965
1 changed files with 1 additions and 2 deletions
|
|
@ -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 a new issue