svn commit: samba r18872 - in branches/SAMBA_4_0/source/librpc/idl: .

tridge at samba.org tridge at samba.org
Sun Sep 24 08:01:25 GMT 2006


Author: tridge
Date: 2006-09-24 08:01:24 +0000 (Sun, 24 Sep 2006)
New Revision: 18872

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18872

Log:

when converting IDL to use out,ref pointers, you also must fix any
length_is() statements.

Modified:
   branches/SAMBA_4_0/source/librpc/idl/dcom.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/dcom.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/dcom.idl	2006-09-24 07:25:08 UTC (rev 18871)
+++ branches/SAMBA_4_0/source/librpc/idl/dcom.idl	2006-09-24 08:01:24 UTC (rev 18872)
@@ -277,7 +277,7 @@
 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



More information about the samba-cvs mailing list