comparison src/protocols/msn/msg.c @ 8647:d16e1bfaf08a

[gaim-migrate @ 9399] Is there a reason this isn't 4? committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 13 Apr 2004 05:52:49 +0000
parents 1e211dde3cae
children 9e5a709c30a8
comparison
equal deleted inserted replaced
8646:1e211dde3cae 8647:d16e1bfaf08a
198 198
199 memcpy(header, tmp, 48); 199 memcpy(header, tmp, 48);
200 200
201 tmp += 48; 201 tmp += 48;
202 202
203 body_len = payload_len - (tmp - tmp_base) - 5; 203 body_len = payload_len - (tmp - tmp_base) - 4;
204 204
205 if (body_len > 0) 205 if (body_len > 0)
206 { 206 {
207 msg->body = g_malloc(body_len + 1); 207 msg->body = g_malloc(body_len + 1);
208 memcpy(msg->body, tmp, body_len); 208 memcpy(msg->body, tmp, body_len);