The branch, v3-2-test has been updated
       via  c86c2219b23fb2e5ce652dae18b0299d76dcb524 (commit)
      from  035fa67801d55f05afbac94592a7700764624ee4 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit c86c2219b23fb2e5ce652dae18b0299d76dcb524
Author: Jeff Layton <[email protected]>
Date:   Fri Feb 6 08:32:40 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 <[email protected]>

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

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


Changeset truncated at 500 lines:

diff --git a/source/client/mount.cifs.c b/source/client/mount.cifs.c
index 021baf4..e7397da 100644
--- a/source/client/mount.cifs.c
+++ b/source/client/mount.cifs.c
@@ -1027,7 +1027,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

Reply via email to