[SCM] Samba Shared Repository - branch v3-4-test updated - release-4-0-0alpha7-1224-gef89107

Karolin Seeger kseeger at samba.org
Fri Aug 21 04:47:23 MDT 2009


The branch, v3-4-test has been updated
       via  ef891070288cd13aff7c730de7c1baf54dddb90f (commit)
      from  ed122f5e9d1e1287eb13efc99e4129492d34abbc (commit)

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


- Log -----------------------------------------------------------------
commit ef891070288cd13aff7c730de7c1baf54dddb90f
Author: Jeremy Allison <jra at samba.org>
Date:   Fri Aug 21 12:44:54 2009 +0200

    Fix Red Hat bugzilla bug : https://bugzilla.redhat.com/show_bug.cgi?id=516165
    nautilus fails to copy files from an SMB share. This is a show-stopper
    for 3.4.1. Although gnome-vfs is doing *incredibly* stupid things by asking
    for a read size of 65535 - this translates on the wire to a 65534 byte read
    followed by a 1 byte read. Please send this back to the gnome developers that
    they will ge horrid on the wire performance for this.
    Jeremy.
    
    Fixes bug #6649.
    
    Fixed in master with commit 33d27797d3ae9ab3ff7e1aa940941cc450f5ad1d.

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

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


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/clireadwrite.c b/source3/libsmb/clireadwrite.c
index f2f447b..b1064ba 100644
--- a/source3/libsmb/clireadwrite.c
+++ b/source3/libsmb/clireadwrite.c
@@ -185,7 +185,7 @@ NTSTATUS cli_read_andx_recv(struct async_req *req, ssize_t *received,
 	buf = (uint8_t *)smb_base(cli_req->inbuf) + SVAL(vwv+6, 0);
 
 	if (trans_oob(smb_len(cli_req->inbuf), SVAL(vwv+6, 0), size)
-	    || (buf < bytes)) {
+	    || (size && (buf < bytes))) {
 		DEBUG(5, ("server returned invalid read&x data offset\n"));
 		return NT_STATUS_INVALID_NETWORK_RESPONSE;
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list