[SCM] Samba Shared Repository - branch master updated

Michael Adam obnox at samba.org
Fri Jul 6 10:47:02 MDT 2012


The branch, master has been updated
       via  d27a9c4 s3: Fix Coverity ID 709470 Uninitialized scalar variable
      from  4654dca s4-selftest: do a dbcheck on our two vampire DCs

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


- Log -----------------------------------------------------------------
commit d27a9c4e432c714765c9b0bb67409f06c7fd7709
Author: Volker Lendecke <vl at samba.org>
Date:   Thu Jul 5 20:30:51 2012 +0200

    s3: Fix Coverity ID 709470 Uninitialized scalar variable
    
    Signed-off-by: Michael Adam <obnox at samba.org>
    
    Autobuild-User(master): Michael Adam <obnox at samba.org>
    Autobuild-Date(master): Fri Jul  6 18:46:06 CEST 2012 on sn-devel-104

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

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


Changeset truncated at 500 lines:

diff --git a/source3/lib/pidfile.c b/source3/lib/pidfile.c
index f0c075c..987ab06 100644
--- a/source3/lib/pidfile.c
+++ b/source3/lib/pidfile.c
@@ -34,7 +34,7 @@ pid_t pidfile_pid(const char *program_name)
 {
 	int fd;
 	char pidstr[20];
-	pid_t pid;
+	pid_t pid = 0;
 	unsigned int ret;
 	char *name;
 	const char *short_configfile;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list