[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-2265-g4198474

Jeremy Allison jra at samba.org
Thu May 1 15:41:13 GMT 2008


The branch, v3-3-test has been updated
       via  41984743d9e89b6568119832c35ee4c0024e43a2 (commit)
      from  2c41d69bcf6f0897ef9d444a8f167aff1772d562 (commit)

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


- Log -----------------------------------------------------------------
commit 41984743d9e89b6568119832c35ee4c0024e43a2
Author: Jeremy Allison <jra at samba.org>
Date:   Thu May 1 08:39:16 2008 -0700

    Fix bug #5434 found by Ted Percival <ted at midg3t.net>.
    Introduced by me in the strlcpy cleanup. Ensure the
    loaded password doesn't contain the '\n' at the end.
    Jeremy.

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

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


Changeset truncated at 500 lines:

diff --git a/source/client/mount.cifs.c b/source/client/mount.cifs.c
index 96ab4a8..d1b7355 100644
--- a/source/client/mount.cifs.c
+++ b/source/client/mount.cifs.c
@@ -236,6 +236,7 @@ static int open_cred_file(char * file_name)
 				for(length = 0;length<MOUNT_PASSWD_SIZE+1;length++) {
 					if ((temp_val[length] == '\n')
 					    || (temp_val[length] == '\0')) {
+						temp_val[length] = '\0';
 						break;
 					}
 				}
@@ -264,6 +265,7 @@ static int open_cred_file(char * file_name)
                                 for(length = 0;length<DOMAIN_SIZE+1;length++) {
 					if ((temp_val[length] == '\n')
 					    || (temp_val[length] == '\0')) {
+						temp_val[length] = '\0';
 						break;
 					}
                                 }


-- 
Samba Shared Repository


More information about the samba-cvs mailing list