From: Quanah Gibson-Mount Date: Fri, 30 Oct 2009 19:55:04 +0000 (+0000) Subject: ITS#5909 X-Git-Tag: OPENLDAP_REL_ENG_2_4_20~75 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a292272c53914e2bd285ddded1dc1d8fc61197cb;p=openldap ITS#5909 --- diff --git a/CHANGES b/CHANGES index d355e2f381..d71e3a594e 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log OpenLDAP 2.4.20 Engineering Fixed libldap uninitialized return value (ITS#6355) + Fixed liblutil constant (ITS#5909) Fixed slapd inclusion of ac/unistd.h (ITS#6342) Fixed slapd debug handling of LDAP_DEBUG_ANY (ITS#6324) Fixed slapd termination for one level dns (ITS#6338) diff --git a/libraries/liblutil/tavl.c b/libraries/liblutil/tavl.c index 519b169911..a6a2bf4a5f 100644 --- a/libraries/liblutil/tavl.c +++ b/libraries/liblutil/tavl.c @@ -21,6 +21,7 @@ #include "portable.h" +#include #include #include @@ -35,6 +36,9 @@ #define AVL_INTERNAL #include "avl.h" +/* Maximum tree depth this host's address space could support */ +#define MAX_TREE_DEPTH (sizeof(void *) * CHAR_BIT) + static const int avl_bfs[] = {LH, RH}; /* @@ -189,8 +193,8 @@ tavl_delete( Avlnode **root, void* data, AVL_CMP fcmp ) int side, side_bf, shorter, nside = -1; /* parent stack */ - Avlnode *pptr[sizeof(void *)*8]; - unsigned char pdir[sizeof(void *)*8]; + Avlnode *pptr[MAX_TREE_DEPTH]; + unsigned char pdir[MAX_TREE_DEPTH]; int depth = 0; if ( *root == NULL )