ITS#357 (cont): Don't crash on at_cn == NULL.

This commit is contained in:
Kurt Zeilenga 1999-11-17 22:53:54 +00:00
parent 43a6e2e878
commit bbeec83869
2 changed files with 16 additions and 2 deletions

View File

@ -254,8 +254,16 @@ bdb2i_index_add_values(
if ( indexmask == 0 ) {
return( 0 );
}
at_cn = at_canonical_name(type);
if ( at_cn == NULL ) {
Debug( LDAP_DEBUG_ANY,
"<= bdb2i_index_add_values no canonical name for type \"%s\"\n",
type != NULL ? type : "(NULL)", 0, 0 );
return( -1 );
}
if ( (db = bdb2i_cache_open( be, at_cn, BDB2_SUFFIX, LDBM_WRCREAT ))
== NULL ) {
Debug( LDAP_DEBUG_ANY,

View File

@ -314,12 +314,18 @@ index_change_values(
at_cn = at_canonical_name( type );
if ( at_cn == NULL ) {
Debug( LDAP_DEBUG_ANY,
"<= index_change_values no canonical name for type \"%s\"\n",
type != NULL ? type : "(NULL)", 0, 0 );
return( -1 );
}
if ( (db = ldbm_cache_open( be, at_cn, LDBM_SUFFIX, mode ))
== NULL ) {
Debug( LDAP_DEBUG_ANY,
"<= index_change_values (couldn't open(%s%s),md=%s)\n",
at_cn,
LDBM_SUFFIX,
at_cn, LDBM_SUFFIX,
((mode==LDBM_WRCREAT)?"LDBM_WRCREAT":"LDBM_WRITER") );
return( -1 );
}