Skip to content
Snippets Groups Projects
Commit a7c53072 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

perhaps the assert can be removed; should work now

parent e918c3b5
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@ ID bdb_tool_entry_put(
assert( text );
assert( text->bv_val );
assert( text->bv_val[0] == '\0' );
assert( text->bv_val[0] == '\0' ); /* overconservative? */
#ifdef NEW_LOGGING
LDAP_LOG ( TOOLS, ARGS, "=> bdb_tool_entry_put( %ld, \"%s\" )\n",
......
......@@ -179,7 +179,7 @@ ID ldbm_tool_entry_put(
assert( text );
assert( text->bv_val );
assert( text->bv_val[0] == '\0' );
assert( text->bv_val[0] == '\0' ); /* overconservative? */
if ( next_id_get( be, &id ) || id == NOID ) {
strncpy( text->bv_val, "unable to get nextid", text->bv_len );
......
......@@ -59,8 +59,12 @@ main( int argc, char **argv )
Entry *e = str2entry( buf );
struct berval bvtext;
/*
* Initialize text buffer
*/
bvtext.bv_len = textlen;
bvtext.bv_val = textbuf;
bvtext.bv_val[0] = '\0';
if( e == NULL ) {
fprintf( stderr, "%s: could not parse entry (line=%d)\n",
......
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