Skip to content
Snippets Groups Projects
Commit 3eb609ab authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add patch from Gordon Good to fix copying of DNs with null bytes.

parent f51765ee
No related branches found
No related tags found
No related merge requests found
......@@ -184,7 +184,8 @@ Re_parse(
state |= GOT_TIME;
break;
case T_DN:
re->re_dn = strdup( value );
re->re_dn = calloc( 1, len + 1 );
memcpy( re->re_dn, value, len );
state |= GOT_DN;
break;
default:
......@@ -224,7 +225,8 @@ Re_parse(
sizeof( Mi ) * ( nml + 2 ));
re->re_mods[ nml ].mi_type = strdup( type );
if ( value != NULL ) {
re->re_mods[ nml ].mi_val = strdup( value );
re->re_mods[ nml ].mi_val = calloc( 1, len + 1 );
memcpy( re->re_mods[ nml ].mi_val, value, len );
re->re_mods[ nml ].mi_len = len;
} else {
re->re_mods[ nml ].mi_val = NULL;
......
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