The branch, master has been updated
       via  0b6f21841e0e90cc269a93c3507a31a5431d44f4 (commit)
      from  df42719ca374f92980ead8885987f606181c4321 (commit)

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


- Log -----------------------------------------------------------------
commit 0b6f21841e0e90cc269a93c3507a31a5431d44f4
Author: Volker Lendecke <v...@samba.org>
Date:   Wed Feb 11 09:35:05 2009 +0100

    Only assign argv[1] after the argc check, thanks Tim!

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

Summary of changes:
 source3/rpcclient/cmd_spoolss.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/rpcclient/cmd_spoolss.c b/source3/rpcclient/cmd_spoolss.c
index 93c2a1d..c3fd463 100644
--- a/source3/rpcclient/cmd_spoolss.c
+++ b/source3/rpcclient/cmd_spoolss.c
@@ -2593,7 +2593,7 @@ static WERROR cmd_spoolss_printercmp(struct 
rpc_pipe_client *cli,
                                     TALLOC_CTX *mem_ctx, int argc,
                                     const char **argv)
 {
-       const char *printername = argv[1];
+       const char *printername;
        char *printername_path = NULL;
        struct cli_state *cli_server2 = NULL;
        struct rpc_pipe_client *cli2 = NULL;
@@ -2606,6 +2606,8 @@ static WERROR cmd_spoolss_printercmp(struct 
rpc_pipe_client *cli,
                return WERR_OK;
        }
 
+       printername = argv[1];
+
        /* first get the connection to the remote server */
 
        nt_status = cli_full_connection(&cli_server2, global_myname(), argv[2],


-- 
Samba Shared Repository

Reply via email to