Skip to content
Snippets Groups Projects
Commit e8ab6eab authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

<url> was used uninitialized

parent 2363640b
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment