From efb43432b01f0b55df409225c7526ff232c00171 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Sat, 28 Apr 2007 02:51:55 +0000 Subject: [PATCH] r22543: Fix bad call to talloc_strict (too few args). Should fix build farm breakage. Jeremy. --- source/include/smb_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/include/smb_macros.h b/source/include/smb_macros.h index f93ed912ee0..08766a1d789 100644 --- a/source/include/smb_macros.h +++ b/source/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 -- 2.47.3