diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-22 08:41:40 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-22 08:41:40 +0000 |
commit | 175e9475796ca7f2ba1e8efad3e6975ad0c71882 (patch) | |
tree | a0c5bcc4466d88c2ead4bc5ab9053e47d345fddb /source4/torture | |
parent | 86a604429ee13aa8c3f930ea74b1fada278ced45 (diff) | |
download | samba-175e9475796ca7f2ba1e8efad3e6975ad0c71882.tar.gz samba-175e9475796ca7f2ba1e8efad3e6975ad0c71882.tar.bz2 samba-175e9475796ca7f2ba1e8efad3e6975ad0c71882.zip |
* enable RPC/NDR validation in all smbtorture code
* allow us to distinguish between null arrays and zero length arrays,
by making the allocation size a minimum of 1 on array pull
(This used to be commit 11c0fe548ecfb03424f51e1354b86d4692e8f07c)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/lsa.c | 2 | ||||
-rw-r--r-- | source4/torture/rpc/samr.c | 2 | ||||
-rw-r--r-- | source4/torture/torture.c | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index 9512493181..178248a49b 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -539,7 +539,7 @@ BOOL torture_rpc_lsa(int dummy) return False; } - p->flags |= DCERPC_DEBUG_PRINT_BOTH | DCERPC_DEBUG_VALIDATE_BOTH; + p->flags |= DCERPC_DEBUG_PRINT_BOTH; if (!test_OpenPolicy(p, mem_ctx)) { ret = False; diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index ef7d9300d8..07faf2c165 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -902,7 +902,7 @@ BOOL torture_rpc_samr(int dummy) return False; } - p->flags |= DCERPC_DEBUG_PRINT_BOTH | DCERPC_DEBUG_VALIDATE_BOTH; + p->flags |= DCERPC_DEBUG_PRINT_BOTH; if (!test_Connect(p, mem_ctx, &handle)) { ret = False; diff --git a/source4/torture/torture.c b/source4/torture/torture.c index aa4af4b397..4fdfe8ccd5 100644 --- a/source4/torture/torture.c +++ b/source4/torture/torture.c @@ -153,6 +153,9 @@ NTSTATUS torture_rpc_connection(struct dcerpc_pipe **p, pipe_name, nt_errstr(status)); return status; } + + /* always do NDR validation in smbtorture */ + (*p)->flags |= DCERPC_DEBUG_VALIDATE_BOTH; return status; } |