1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3: Fix bug 7635

This commit is contained in:
Volker Lendecke 2010-08-21 11:32:58 +02:00
parent af081ec4a1
commit 554b1140a8

View File

@ -63,8 +63,10 @@ static struct tevent_req *cli_message_start_send(TALLOC_CTX *mem_ctx,
*p++ = 4;
memcpy(p, utmp, ulen);
p += ulen;
*p++ = 4;
memcpy(p, htmp, hlen);
p += hlen;
TALLOC_FREE(htmp);
TALLOC_FREE(utmp);
@ -165,8 +167,8 @@ static struct tevent_req *cli_message_text_send(TALLOC_CTX *mem_ctx,
TALLOC_FREE(tmp);
return tevent_req_post(req, ev);
}
SCVAL(bytes, 0, 0); /* pad */
SSVAL(bytes, 1, msglen);
SCVAL(bytes, 0, 1); /* pad */
SSVAL(bytes+1, 0, msglen);
memcpy(bytes+3, msg, msglen);
TALLOC_FREE(tmp);