Fix uninitialized pointer bug.

This commit is contained in:
Kurt Zeilenga 1998-10-23 21:51:32 +00:00
parent 1c0b433a25
commit 856c134079

View file

@ -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 );