]> git.sur5r.net Git - openldap/commitdiff
ITS#4990: Fix LDAP_MEMORY_DEBUG and LDAP_MEMORY_DEBUG=0 compilation.
authorHallvard Furuseth <hallvard@openldap.org>
Wed, 4 Jul 2007 22:55:24 +0000 (22:55 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Wed, 4 Jul 2007 22:55:24 +0000 (22:55 +0000)
Declare ber_int_meminuse.  Fix '#if' -> '#ifdef' LDAP_MEMORY_DEBUG.

libraries/liblber/memory.c

index 0681869862b475253d4779aad4320a83c2741150..3f569f7f8aa9666caf42d0f31e0878ab34e77fcb 100644 (file)
@@ -24,7 +24,7 @@
 #include <stdio.h>
 #endif
 
-#if LDAP_MEMORY_DEBUG
+#ifdef LDAP_MEMORY_DEBUG
 /*
  * LDAP_MEMORY_DEBUG should only be enabled for the purposes of
  * debugging memory management within OpenLDAP libraries and slapd.
@@ -71,6 +71,7 @@ static const struct ber_mem_hdr ber_int_mem_hdr = { LBER_MEM_JUNK, 0, 0 };
  * put allocations/frees together.  It is then a simple matter to write a script
  * to find any allocations that don't have a buffer free function.
  */
+long ber_int_meminuse = 0;
 #ifdef LDAP_MEMORY_TRACE
 static ber_int_t sequence = 0;
 #endif