diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-03-11 10:09:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:00 -0500 |
commit | 1ecdd798471a9c40eec6a4eaf95af9d5bdc1a601 (patch) | |
tree | cf561a125471baf924a69b172489f03e092e0f6d /source4/librpc/ndr/libndr.h | |
parent | f52643c23c50e68c149b5e6726ca1c10c9e3fd27 (diff) | |
download | samba-1ecdd798471a9c40eec6a4eaf95af9d5bdc1a601.tar.gz samba-1ecdd798471a9c40eec6a4eaf95af9d5bdc1a601.tar.bz2 samba-1ecdd798471a9c40eec6a4eaf95af9d5bdc1a601.zip |
r5736: fix to avoid endless recursion in ndr_size_*() calculation
metze
(This used to be commit eaac0f214703f91f186eb54f97e15e56461762bd)
Diffstat (limited to 'source4/librpc/ndr/libndr.h')
-rw-r--r-- | source4/librpc/ndr/libndr.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/librpc/ndr/libndr.h b/source4/librpc/ndr/libndr.h index e2ac4279f1..19d4356681 100644 --- a/source4/librpc/ndr/libndr.h +++ b/source4/librpc/ndr/libndr.h @@ -132,6 +132,9 @@ struct ndr_print { /* set if an object uuid will be present */ #define LIBNDR_FLAG_OBJECT_PRESENT (1<<30) +/* set to avoid recursion in ndr_size_*() calculation */ +#define LIBNDR_FLAG_NO_NDR_SIZE (1<<31) + /* useful macro for debugging */ #define NDR_PRINT_DEBUG(type, p) ndr_print_debug((ndr_print_fn_t)ndr_print_ ##type, #p, p) #define NDR_PRINT_UNION_DEBUG(type, level, p) ndr_print_union_debug((ndr_print_union_fn_t)ndr_print_ ##type, #p, level, p) |