[SCM] Samba Shared Repository - branch v3-3-test updated

Karolin Seeger kseeger at samba.org
Fri Jan 15 04:12:28 MST 2010


The branch, v3-3-test has been updated
       via  0726390... s3-libsmbclient: Fix crash bug in SMBC_parse_path().
      from  a92d42c... Fix bug #7036 - net rpc getsid fails in hardened windows environments.

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


- Log -----------------------------------------------------------------
commit 07263901632bb98851d86dc0ba1d2dc22735c020
Author: Günther Deschner <gd at samba.org>
Date:   Thu Jan 14 11:34:04 2010 -0800

    s3-libsmbclient: Fix crash bug in SMBC_parse_path().
    
    Patch from Tim Waugh <twaugh at redhat.com>.
    This resolves https://bugzilla.redhat.com/show_bug.cgi?id=552658
    
    LIBSMBCLIENT-OPENDIR torture test checks this as well.
    
    Guenther
    
    Fix bug #7043 (SIGSEGV in "SMBC_parse_path").

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

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


Changeset truncated at 500 lines:

diff --git a/source/libsmb/libsmb_path.c b/source/libsmb/libsmb_path.c
index 3ea0344..0a54db4 100644
--- a/source/libsmb/libsmb_path.c
+++ b/source/libsmb/libsmb_path.c
@@ -308,7 +308,7 @@ SMBC_parse_path(TALLOC_CTX *ctx,
 		if (!*pp_server) {
 			return -1;
 		}
-               	*pp_server[wl] = '\0';
+		(*pp_server)[wl] = '\0';
 		return 0;
 	}
         


-- 
Samba Shared Repository


More information about the samba-cvs mailing list