mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
s/*vlenp = NULL;/*vlenp = 0;/
This commit is contained in:
parent
a9f6fc35f7
commit
f7fe39e5f2
2 changed files with 2 additions and 2 deletions
|
|
@ -59,7 +59,7 @@ ldif_fetch_url(
|
|||
|
||||
#else
|
||||
*valuep = NULL;
|
||||
*vlenp = NULL;
|
||||
*vlenp = 0;
|
||||
return -1;
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ ldif_parse_line(
|
|||
|
||||
*typep = NULL;
|
||||
*valuep = NULL;
|
||||
*vlenp = NULL;
|
||||
*vlenp = 0;
|
||||
|
||||
/* skip any leading space */
|
||||
while ( isspace( (unsigned char) *line ) ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue