summaryrefslogtreecommitdiff
path: root/source4/lib/talloc/talloc.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-05-07 22:10:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:16:32 -0500
commitc1d31ac8fc22a46d3ce7d99058e48058464f4e06 (patch)
treeae9908cc38901aa3fe5b814c231166e8bd31969e /source4/lib/talloc/talloc.c
parent13bb5c34863c85f7d0cec13d7649ade242acbd52 (diff)
downloadsamba-c1d31ac8fc22a46d3ce7d99058e48058464f4e06.tar.gz
samba-c1d31ac8fc22a46d3ce7d99058e48058464f4e06.tar.bz2
samba-c1d31ac8fc22a46d3ce7d99058e48058464f4e06.zip
r6660: Sorry for the spam... I think now I've got a version that should compile on
trunk, 3_0 and 4_0. Volker (This used to be commit 777c489cad610fef140ec80d5644111b04a314c1)
Diffstat (limited to 'source4/lib/talloc/talloc.c')
-rw-r--r--source4/lib/talloc/talloc.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/source4/lib/talloc/talloc.c b/source4/lib/talloc/talloc.c
index cb5e91341e..3650ab7f51 100644
--- a/source4/lib/talloc/talloc.c
+++ b/source4/lib/talloc/talloc.c
@@ -29,6 +29,16 @@
#ifdef _SAMBA_BUILD_
#include "includes.h"
+#if ((SAMBA_VERSION_MAJOR==3)&&(SAMBA_VERSION_MINOR<9))
+/* This is to circumvent SAMBA3's paranoid malloc checker. Here in this file
+ * we trust ourselves... */
+#ifdef malloc
+#undef malloc
+#endif
+#ifdef realloc
+#undef realloc
+#endif
+#endif
#else
#include <stdio.h>
#include <stdlib.h>
@@ -1081,7 +1091,6 @@ void *talloc_autofree_context(void)
return cleanup_context;
}
-
size_t talloc_get_size(const void *context)
{
struct talloc_chunk *tc;