mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-06-11 01:30:05 -04:00
Import ldif/line64 bug fix... ensure 4, not 3, characters are analyzed.
This commit is contained in:
parent
d168ed1c14
commit
c103bd388b
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ str_parse_line(
|
|||
stop = strchr( s, '\0' );
|
||||
byte = s;
|
||||
for ( p = s, *vlen = 0; p < stop; p += 4, *vlen += 3 ) {
|
||||
for ( i = 0; i < 3; i++ ) {
|
||||
for ( i = 0; i < 4; i++ ) {
|
||||
if ( p[i] != '=' && (p[i] & 0x80 ||
|
||||
b642nib[ p[i] & 0x7f ] > 0x3f) ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
|
|
|
|||
Loading…
Reference in a new issue