[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1233-g2012770

Jeremy Allison jra at samba.org
Thu Apr 23 08:47:39 GMT 2009


The branch, master has been updated
       via  20127703938d10b05765e2cba85dbd3ad33a4fdb (commit)
      from  5abdc58f9822edbbf291c625dec7304c09f12e28 (commit)

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


- Log -----------------------------------------------------------------
commit 20127703938d10b05765e2cba85dbd3ad33a4fdb
Author: Jeremy Allison <jra at samba.org>
Date:   Thu Apr 23 01:47:04 2009 -0700

    Fix coverity #908, #909, uninitialized variable.
    Jeremy.

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

Summary of changes:
 source3/rpc_server/srv_spoolss_nt.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c
index 962b729..9ad509e 100644
--- a/source3/rpc_server/srv_spoolss_nt.c
+++ b/source3/rpc_server/srv_spoolss_nt.c
@@ -8264,7 +8264,7 @@ WERROR _spoolss_AddForm(pipes_struct *p,
 {
 	struct spoolss_AddFormInfo1 *form = r->in.info.info1;
 	nt_forms_struct tmpForm;
-	int snum;
+	int snum = -1;
 	WERROR status = WERR_OK;
 	NT_PRINTER_INFO_LEVEL *printer = NULL;
 	SE_PRIV se_printop = SE_PRINT_OPERATOR;
@@ -8352,7 +8352,7 @@ WERROR _spoolss_DeleteForm(pipes_struct *p,
 	int count=0;
 	nt_forms_struct *list=NULL;
 	Printer_entry *Printer = find_printer_index_by_hnd(p, r->in.handle);
-	int snum;
+	int snum = -1;
 	WERROR status = WERR_OK;
 	NT_PRINTER_INFO_LEVEL *printer = NULL;
 	SE_PRIV se_printop = SE_PRINT_OPERATOR;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list