From: Volker Lendecke Date: Tue, 13 Apr 2021 15:00:39 +0000 (+0000) Subject: lib: Remove two unused historic macros X-Git-Tag: tevent-0.11.0~1095 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44f6258ad080939921908d553ca19e982ee729fc;p=thirdparty%2Fsamba.git lib: Remove two unused historic macros Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h index d9583945c55..39a7c0d6911 100644 --- a/source3/include/smb_macros.h +++ b/source3/include/smb_macros.h @@ -228,10 +228,7 @@ copy an IP address from one buffer to another #define SMB_XMALLOC_ARRAY(type,count) (type *)smb_xmalloc_array(sizeof(type),(count)) #define TALLOC(ctx, size) talloc_named_const(ctx, size, __location__) -#define TALLOC_ZERO(ctx, size) _talloc_zero(ctx, size, __location__) #define TALLOC_SIZE(ctx, size) talloc_named_const(ctx, size, __location__) -#define TALLOC_ZERO_SIZE(ctx, size) _talloc_zero(ctx, size, __location__) - #define TALLOC_REALLOC(ctx, ptr, count) _talloc_realloc(ctx, ptr, count, __location__) #define talloc_destroy(ctx) talloc_free(ctx) #ifndef TALLOC_FREE