mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-01 14:15:49 +08:00
<url> was used uninitialized
This commit is contained in:
parent
2363640b33
commit
e8ab6eabec
@ -110,6 +110,9 @@ ldif_parse_line(
|
||||
}
|
||||
*s++ = '\0';
|
||||
|
||||
url = 0;
|
||||
b64 = 0;
|
||||
|
||||
if ( *s == '\0' ) {
|
||||
/* no value */
|
||||
value = NULL;
|
||||
@ -117,9 +120,6 @@ ldif_parse_line(
|
||||
goto done;
|
||||
}
|
||||
|
||||
url = 0;
|
||||
b64 = 0;
|
||||
|
||||
if ( *s == '<' ) {
|
||||
s++;
|
||||
url = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user