[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-2571-g6106d48

Volker Lendecke vlendec at samba.org
Fri May 23 13:36:09 GMT 2008


The branch, v3-3-test has been updated
       via  6106d48a5c94e7c1f3a7234807e43aca0a51fa62 (commit)
      from  5a99f59d7514edadbab081dc0c5c28a6ea26972a (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test


- Log -----------------------------------------------------------------
commit 6106d48a5c94e7c1f3a7234807e43aca0a51fa62
Author: Volker Lendecke <vl at samba.org>
Date:   Fri May 23 15:09:21 2008 +0200

    Fix a (bogus) uninitialized variable warning

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

Summary of changes:
 source/rpc_client/cli_pipe.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/rpc_client/cli_pipe.c b/source/rpc_client/cli_pipe.c
index 2705fd8..8f41037 100644
--- a/source/rpc_client/cli_pipe.c
+++ b/source/rpc_client/cli_pipe.c
@@ -2702,7 +2702,7 @@ NTSTATUS rpc_pipe_open_tcp(TALLOC_CTX *mem_ctx, const char *host,
 			   struct rpc_pipe_client **presult)
 {
 	NTSTATUS status;
-	uint16_t port;
+	uint16_t port = 0;
 
 	status = rpc_pipe_get_tcp_port(host, abstract_syntax, &port);
 	if (!NT_STATUS_IS_OK(status)) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list