mirror of
https://github.com/samba-team/samba.git
synced 2025-11-18 00:23:50 +03:00
r4687: use struct type and location for easier finding
metze
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
894f402b01
commit
a88aac7a39
@@ -37,7 +37,7 @@ typedef void TALLOC_CTX;
|
||||
#endif
|
||||
|
||||
/* useful macros for creating type checked pointers */
|
||||
#define talloc(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type)
|
||||
#define talloc(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type ": " __location__)
|
||||
#define talloc_size(ctx, size) talloc_named_const(ctx, size, __location__)
|
||||
|
||||
#define talloc_new(ctx) talloc_named_const(ctx, 0, "talloc_new: " __location__)
|
||||
|
||||
Reference in New Issue
Block a user