1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r16869: - if we know the blob length, we can preallocated the memory

and avoid a realloc in smb2_push_*
- don't overwrite the first data byte

metze
This commit is contained in:
Stefan Metzmacher 2006-07-08 07:39:06 +00:00 committed by Gerald (Jerry) Carter
parent 1bb60b5be4
commit 7761a2a595

View File

@ -154,11 +154,10 @@ static void smb2srv_read_send(struct ntvfs_request *ntvfs)
union smb_read *io;
SMB2SRV_CHECK_ASYNC_STATUS(io, union smb_read);
SMB2SRV_CHECK(smb2srv_setup_reply(req, 0x10, True, 0));
SMB2SRV_CHECK(smb2srv_setup_reply(req, 0x10, True, io->smb2.out.data.length));
SMB2SRV_CHECK(smb2_push_o16s32_blob(&req->out, 0x02, io->smb2.out.data));
SBVAL(req->out.body, 0x08, io->smb2.out.unknown1);
SCVAL(req->out.body, 0x10, 0);
smb2srv_send_reply(req);
}