The branch, master has been updated
       via  57a0f34 s3: Fix Coverity ID 2596, REVERSE_INULL
      from  7524413 cli_raw: Make name lowercase.

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


- Log -----------------------------------------------------------------
commit 57a0f344a192112b31bb00bef79f3e5e4b747cfe
Author: Volker Lendecke <v...@samba.org>
Date:   Sun Jul 24 15:21:32 2011 +0200

    s3: Fix Coverity ID 2596, REVERSE_INULL
    
    Autobuild-User: Volker Lendecke <vlen...@samba.org>
    Autobuild-Date: Sun Jul 24 16:37:19 CEST 2011 on sn-devel-104

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

Summary of changes:
 source3/libsmb/clidfs.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/clidfs.c b/source3/libsmb/clidfs.c
index 97458e5..d729649 100644
--- a/source3/libsmb/clidfs.c
+++ b/source3/libsmb/clidfs.c
@@ -1032,12 +1032,13 @@ bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
        uint16 cnum;
        char *newextrapath = NULL;
        NTSTATUS status;
-       const char *remote_name = cli_state_remote_name(cli);
+       const char *remote_name;
 
        if (!cli || !sharename) {
                return false;
        }
 
+       remote_name = cli_state_remote_name(cli);
        cnum = cli_state_get_tid(cli);
 
        /* special case.  never check for a referral on the IPC$ share */


-- 
Samba Shared Repository

Reply via email to