don't core if out value is NULL (log error instead; in partial fulfilment of ITS#4644)

This commit is contained in:
Pierangelo Masarati 2006-08-17 17:37:46 +00:00
parent a05a8972b2
commit ea3ffdd135

View File

@ -1412,7 +1412,8 @@ dnX509normalize( void *x509_name, struct berval *out )
int rc = ldap_X509dn2bv( x509_name, out, LDAPDN_rewrite, 0 );
Debug( LDAP_DEBUG_TRACE,
"dnX509Normalize: <%s>\n", out->bv_val, 0, 0 );
"dnX509Normalize: <%s> (%d)\n",
BER_BVISNULL( out ) ? "(null)" : out->bv_val, rc, 0 );
return rc;
}