27 lines
776 B
Diff
27 lines
776 B
Diff
From 5482b878d90a9ee163a823ccc17b537bdb70aae7 Mon Sep 17 00:00:00 2001
|
|
From: Howard Chu <hyc@openldap.org>
|
|
Date: Mon, 2 Nov 2020 16:01:14 +0000
|
|
Subject: [PATCH 2/2] ITS#9384 remove assert in obsolete csnNormalize23()
|
|
|
|
---
|
|
servers/slapd/schema_init.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/servers/slapd/schema_init.c b/servers/slapd/schema_init.c
|
|
index cd979cc5a..d6a54ad0b 100644
|
|
--- a/servers/slapd/schema_init.c
|
|
+++ b/servers/slapd/schema_init.c
|
|
@@ -5315,8 +5315,8 @@ csnNormalize23(
|
|
}
|
|
*ptr = '\0';
|
|
|
|
- assert( ptr == &bv.bv_val[bv.bv_len] );
|
|
- if ( csnValidate( syntax, &bv ) != LDAP_SUCCESS ) {
|
|
+ if ( ptr != &bv.bv_val[bv.bv_len] ||
|
|
+ csnValidate( syntax, &bv ) != LDAP_SUCCESS ) {
|
|
return LDAP_INVALID_SYNTAX;
|
|
}
|
|
|
|
--
|
|
2.29.2
|
|
|