mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-02 20:10:11 -05:00
ITS#10390 ldif_parse_line2 calculates an incorrect length of the attribute type
This commit is contained in:
parent
138422cbe9
commit
9731103ffb
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ ldif_parse_line2(
|
|||
*p = '\0';
|
||||
}
|
||||
*s++ = '\0';
|
||||
type->bv_len = s - type->bv_val - 1;
|
||||
type->bv_len = p - type->bv_val + 1;
|
||||
|
||||
url = 0;
|
||||
b64 = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue