[SCM] Samba Shared Repository - branch master updated - 735b3e1c0c04e2f57fa9468bce9f38534bd3d581

Tim Prouty tprouty at samba.org
Wed Dec 17 07:26:15 GMT 2008


The branch, master has been updated
       via  735b3e1c0c04e2f57fa9468bce9f38534bd3d581 (commit)
      from  fc7e41d6ff838be7780161265a0b486b6937139b (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 735b3e1c0c04e2f57fa9468bce9f38534bd3d581
Author: Tim Prouty <tprouty at samba.org>
Date:   Tue Dec 16 22:46:33 2008 -0800

    s3/s4: Fix DCOM idl bug
    
    A build warning uncovered a bug where a pointer was being passed in
    instead of the dereferenced value of the pointer.

-----------------------------------------------------------------------

Summary of changes:
 librpc/idl/dcom.idl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/librpc/idl/dcom.idl b/librpc/idl/dcom.idl
index 18d0d61..30d6d43 100644
--- a/librpc/idl/dcom.idl
+++ b/librpc/idl/dcom.idl
@@ -276,7 +276,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] uint32 *num_read


-- 
Samba Shared Repository


More information about the samba-cvs mailing list