mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 01:59:38 -05:00
Fix another crasher in attr_merge_normalize_one()
This commit is contained in:
parent
03fcb6526d
commit
5178355d27
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ attr_merge_normalize_one(
|
|||
struct berval *nvalp;
|
||||
int rc;
|
||||
|
||||
if ( desc->ad_type->sat_equality->smr_normalize ) {
|
||||
if ( desc->ad_type->sat_equality && desc->ad_type->sat_equality->smr_normalize ) {
|
||||
rc = (*desc->ad_type->sat_equality->smr_normalize)(
|
||||
0,
|
||||
desc->ad_type->sat_syntax,
|
||||
|
|
|
|||
Loading…
Reference in a new issue