From 5724bd9a54ad1c6b3822bfd6619415ecc2f014b2 Mon Sep 17 00:00:00 2001 From: Quanah Gibson-Mount Date: Thu, 26 Mar 2009 19:38:35 +0000 Subject: [PATCH] ITS#6036 --- CHANGES | 1 + servers/slapd/schema_init.c | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index e8b136a3bc..a13559ee9c 100644 --- a/CHANGES +++ b/CHANGES @@ -11,6 +11,7 @@ OpenLDAP 2.4.16 Release (2009/03/20) Fixed slapd ctxcsn race condition (ITS#6001) Fixed slapd debug message (ITS#6027) Fixed slapd redundant module loading (ITS#6030) + Fixed slapd schema_init freed value (ITS#6036) Fixed slapd syncrepl newCookie sync messages (ITS#5972) Fixed slapd syncrepl hang during shutdown (ITS#6011) Fixed slapd syncrepl too many MMR messages (ITS#6020) diff --git a/servers/slapd/schema_init.c b/servers/slapd/schema_init.c index 24c9933eb5..85c62249df 100644 --- a/servers/slapd/schema_init.c +++ b/servers/slapd/schema_init.c @@ -2814,6 +2814,7 @@ UUIDNormalize( } else { slap_sl_free( normalized->bv_val, ctx ); + BER_BVZERO( normalized ); return LDAP_INVALID_SYNTAX; } -- 2.39.5