[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Thu Mar 23 06:44:02 UTC 2017


The branch, master has been updated
       via  2901fe8 net: Don't crash if lsa_LookupPrivDisplayName returns NULL
      from  e7d1d8c nsswtich: Add negative tests for authentication with wbinfo

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


- Log -----------------------------------------------------------------
commit 2901fe89216e941e7bc2fd7eb81c9d40349c17ab
Author: Volker Lendecke <vl at samba.org>
Date:   Wed Mar 22 15:41:47 2017 +0100

    net: Don't crash if lsa_LookupPrivDisplayName returns NULL
    
    lsa_LookupPrivDisplayName on Windows 2012R2 can return success and still return
    a NULL name:
    
    rpc_api_pipe: got frag len of 36 at offset 0: NT_STATUS_OK
    rpc_api_pipe: host 172.18.103.80 returned 12 bytes.
         lsa_LookupPrivDisplayName: struct lsa_LookupPrivDisplayName
            out: struct lsa_LookupPrivDisplayName
                disp_name                : *
                    disp_name                : NULL
                returned_language_id     : *
                    returned_language_id     : 0x0000 (0)
                result                   : NT_STATUS_OK
    
    Signed-off-by: Volker Lendecke <vl at samba.org>
    Reviewed-by: Jeremy Allison <jra at samba.org>
    
    Autobuild-User(master): Jeremy Allison <jra at samba.org>
    Autobuild-Date(master): Thu Mar 23 07:43:57 CET 2017 on sn-devel-144

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

Summary of changes:
 source3/utils/net_rpc_rights.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/source3/utils/net_rpc_rights.c b/source3/utils/net_rpc_rights.c
index 9640db0..c37b04e 100644
--- a/source3/utils/net_rpc_rights.c
+++ b/source3/utils/net_rpc_rights.c
@@ -153,7 +153,7 @@ static NTSTATUS enum_privileges(struct rpc_pipe_client *pipe_hnd,
 			continue;
 		}
 
-		d_printf("%s\n", description->string);
+		d_printf("%s\n", description ? description->string : "??????");
 	}
 
 	return NT_STATUS_OK;


-- 
Samba Shared Repository



More information about the samba-cvs mailing list