[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha6-537-gd895ca5

Jeff Layton jlayton at samba.org
Fri Feb 6 13:31:25 GMT 2009


The branch, master has been updated
       via  d895ca505f7f9c4edf476a0c966e93917e35575c (commit)
      from  ea8bd81b6eaf2d2ca005d30c1580e7a45d3b3c5d (commit)

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


- Log -----------------------------------------------------------------
commit d895ca505f7f9c4edf476a0c966e93917e35575c
Author: Jeff Layton <jlayton at redhat.com>
Date:   Fri Feb 6 08:29:58 2009 -0500

    mount.cifs: initialize rc to 0 in main
    
    The value of rc in main() isn't initialized in the declaration. This
    wasn't a problem before, but Shirish's fakemount patch can make it so
    that we return the uninitialized variable if the -n flag is used.
    
    Fix this by initializing rc to 0.
    
    Signed-off-by: Jeff Layton <jlayton at redhat.com>

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

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


Changeset truncated at 500 lines:

diff --git a/source3/client/mount.cifs.c b/source3/client/mount.cifs.c
index df5be84..a736609 100644
--- a/source3/client/mount.cifs.c
+++ b/source3/client/mount.cifs.c
@@ -1031,7 +1031,7 @@ int main(int argc, char ** argv)
 	char * resolved_path = NULL;
 	char * temp;
 	char * dev_name;
-	int rc;
+	int rc = 0;
 	int rsize = 0;
 	int wsize = 0;
 	int nomtab = 0;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list