summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-04-27 22:04:27 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:51:40 -0500
commitca3a7a55789557331b7ffc810eae33a8f9859397 (patch)
treece93d49bd32f723bf6c1002b9646761abfd477af
parent3477721278b97212d47ddddde6f0ab060406aea3 (diff)
downloadsamba-ca3a7a55789557331b7ffc810eae33a8f9859397.tar.gz
samba-ca3a7a55789557331b7ffc810eae33a8f9859397.tar.bz2
samba-ca3a7a55789557331b7ffc810eae33a8f9859397.zip
r22541: Added talloc_size_strict macro.
Jeremy. (This used to be commit 219e1cae7792a5da886212f335ed11a35f28b3eb)
-rw-r--r--source4/lib/talloc/talloc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/lib/talloc/talloc.h b/source4/lib/talloc/talloc.h
index 357c9b5076..48bf4303c6 100644
--- a/source4/lib/talloc/talloc.h
+++ b/source4/lib/talloc/talloc.h
@@ -84,6 +84,7 @@ typedef void TALLOC_CTX;
/* useful macros for creating type checked pointers */
#define talloc(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type)
#define talloc_size(ctx, size) talloc_named_const(ctx, size, __location__)
+#define talloc_size_strict(ctx, size) talloc_strict(ctx, size, __location__)
#define talloc_ptrtype(ctx, ptr) (_TALLOC_TYPEOF(ptr))talloc_size(ctx, sizeof(*(ptr)))
#define talloc_new(ctx) talloc_named_const(ctx, 0, "talloc_new: " __location__)