mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
<url> was used uninitialized
This commit is contained in:
parent
2363640b33
commit
e8ab6eabec
1 changed files with 3 additions and 3 deletions
|
|
@ -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 a new issue