diff options
author | Jeremy Allison <jra@samba.org> | 2007-04-28 02:51:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:44 -0500 |
commit | 0fbbf8440aa45a90f5b913815122fa127793a72d (patch) | |
tree | 675997b65c5966f3fb13171ce3e574990a1b1c6d | |
parent | 12ba88574bf91bdcc4447bfc3d429b799064bfd9 (diff) | |
download | samba-0fbbf8440aa45a90f5b913815122fa127793a72d.tar.gz samba-0fbbf8440aa45a90f5b913815122fa127793a72d.tar.bz2 samba-0fbbf8440aa45a90f5b913815122fa127793a72d.zip |
r22543: Fix bad call to talloc_strict (too few args).
Should fix build farm breakage.
Jeremy.
(This used to be commit efb43432b01f0b55df409225c7526ff232c00171)
-rw-r--r-- | source3/include/smb_macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h index f93ed912ee..08766a1d78 100644 --- a/source3/include/smb_macros.h +++ b/source3/include/smb_macros.h @@ -282,7 +282,7 @@ copy an IP address from one buffer to another #define TALLOC_REALLOC_ARRAY(ctx, ptr, type, count) (type *)_talloc_realloc_array(ctx, ptr, sizeof(type), count, #type) #define talloc_destroy(ctx) talloc_free(ctx) #define TALLOC_FREE(ctx) do { if ((ctx) != NULL) {talloc_free(ctx); ctx=NULL;} } while(0) -#define TALLOC_SIZE(ctx, size) talloc_strict(ctx, size) +#define TALLOC_SIZE(ctx, size) talloc_strict(ctx, size, __location__) #define TALLOC_ZERO_SIZE(ctx, size) talloc_zero_size_strict(ctx, size) /* only define PARANOID_MALLOC_CHECKER with --enable-developer and not compiling |