From: Jeremy Allison Date: Wed, 31 Oct 2007 00:42:02 +0000 (-0700) Subject: Ensure we don't prematurely clean out the bytes read. X-Git-Tag: samba-4.0.0alpha6~801^2~4526 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=360c02328faf6fd64edebc8f3d499cee54753aeb;p=samba.git Ensure we don't prematurely clean out the bytes read. Jeremy. (This used to be commit 247675695dfbff503b5792de62f8bb1567ea2327) --- diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index c1c1939153d..21a12ae766a 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -428,12 +428,15 @@ ssize_t vfs_write_data(struct smb_request *req, if (req && req->unread_bytes) { SMB_ASSERT(req->unread_bytes == N); - req->unread_bytes = 0; - return SMB_VFS_RECVFILE(smbd_server_fd(), + ret = SMB_VFS_RECVFILE(smbd_server_fd(), fsp, fsp->fh->fd, (SMB_OFF_T)-1, N); + if (ret != -1) { + req->unread_bytes = 0; + } + return ret; } while (total < N) { @@ -460,12 +463,15 @@ ssize_t vfs_pwrite_data(struct smb_request *req, if (req && req->unread_bytes) { SMB_ASSERT(req->unread_bytes == N); - req->unread_bytes = 0; - return SMB_VFS_RECVFILE(smbd_server_fd(), + ret = SMB_VFS_RECVFILE(smbd_server_fd(), fsp, fsp->fh->fd, offset, N); + if (ret != -1) { + req->unread_bytes = 0; + } + return ret; } while (total < N) {