[SCM] Samba Shared Repository - branch v3-0-test updated - release-3-0-28-139-gc439013

Jeremy Allison jra at samba.org
Thu Feb 28 10:41:13 GMT 2008


The branch, v3-0-test has been updated
       via  c439013ef99971907bfc9d01c01f4a680960bb11 (commit)
      from  b605b169e659ee0c84f7d807e8dfb25e9723a2bf (commit)

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


- Log -----------------------------------------------------------------
commit c439013ef99971907bfc9d01c01f4a680960bb11
Author: Jeremy Allison <jra at samba.org>
Date:   Thu Feb 28 02:41:01 2008 -0800

    Fix possible uninitialized variable use.
    Jeremy.

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

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


Changeset truncated at 500 lines:

diff --git a/source/nsswitch/winbindd_cred_cache.c b/source/nsswitch/winbindd_cred_cache.c
index 368090c..e47858b 100644
--- a/source/nsswitch/winbindd_cred_cache.c
+++ b/source/nsswitch/winbindd_cred_cache.c
@@ -426,7 +426,7 @@ NTSTATUS add_ccache_to_list(const char *princ_name,
 NTSTATUS remove_ccache(const char *username)
 {
 	struct WINBINDD_CCACHE_ENTRY *entry = get_ccache_by_username(username);
-	NTSTATUS status;
+	NTSTATUS status = NT_STATUS_OK;
 #ifdef HAVE_KRB5
 	krb5_error_code ret;
 #endif


-- 
Samba Shared Repository


More information about the samba-cvs mailing list