diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-24 08:01:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:17 -0500 |
commit | c682da359c59605ba0f458008d823b57eda1ca4a (patch) | |
tree | 6af853bc7542610b92084ae2f2c2becb98c0a345 | |
parent | 2b2c7ee2f0b5319afde788e244af9dc161500a4c (diff) | |
download | samba-c682da359c59605ba0f458008d823b57eda1ca4a.tar.gz samba-c682da359c59605ba0f458008d823b57eda1ca4a.tar.bz2 samba-c682da359c59605ba0f458008d823b57eda1ca4a.zip |
r18872: when converting IDL to use out,ref pointers, you also must fix any
length_is() statements.
(This used to be commit 2f9a1f1d62351e20274227c3068a2e8211148535)
-rw-r--r-- | source4/librpc/idl/dcom.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/idl/dcom.idl b/source4/librpc/idl/dcom.idl index f4b7a5d2ab..88039914ab 100644 --- a/source4/librpc/idl/dcom.idl +++ b/source4/librpc/idl/dcom.idl @@ -277,7 +277,7 @@ interface IRemUnknown2 : IRemUnknown interface IStream : IUnknown { WERROR Read( - [out, size_is(num_requested), length_is(num_read)] uint8 pv[], + [out, size_is(num_requested), length_is(*num_read)] uint8 pv[], [in] uint32 num_requested, [in, unique] uint32 *num_readx, [out,ref] uint32 *num_read |