mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
Fix uninitialized pointer bug.
This commit is contained in:
parent
1c0b433a25
commit
856c134079
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ static int str2subvals();
|
|||
Filter *
|
||||
str2filter( char *str )
|
||||
{
|
||||
Filter *f;
|
||||
Filter *f = NULL;
|
||||
char *end;
|
||||
|
||||
Debug( LDAP_DEBUG_FILTER, "str2filter \"%s\"\n", str, 0, 0 );
|
||||
|
|
|
|||
Loading…
Reference in a new issue