[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1526-g831b73e

Volker Lendecke vlendec at samba.org
Sun May 10 05:42:33 GMT 2009


The branch, master has been updated
       via  831b73ec82717c3c73ea1250f9c94228d251c1ec (commit)
      from  46dea8c24750b98ca589777904cc05e4e3e92d71 (commit)

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


- Log -----------------------------------------------------------------
commit 831b73ec82717c3c73ea1250f9c94228d251c1ec
Author: Volker Lendecke <vl at samba.org>
Date:   Sun May 10 07:42:55 2009 +0200

    Fix an unitialized variable warning

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

Summary of changes:
 libcli/named_pipe_auth/npa_tstream.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/libcli/named_pipe_auth/npa_tstream.c b/libcli/named_pipe_auth/npa_tstream.c
index 57e8418..fdb55c7 100644
--- a/libcli/named_pipe_auth/npa_tstream.c
+++ b/libcli/named_pipe_auth/npa_tstream.c
@@ -458,6 +458,9 @@ static ssize_t tstream_npa_pending_bytes(struct tstream_context *stream)
 	case FILE_TYPE_MESSAGE_MODE_PIPE:
 		ret = npas->pending.iov_len;
 		break;
+
+	default:
+		ret = -1;
 	}
 
 	return ret;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list