comparison src/protocols/msn/msg.c @ 10275:d9468bd22b7c

[gaim-migrate @ 11428] I reworked Fernando Herrera's patch from September to show who you've blocked and who doesn't have you on their MSN buddy list as emblems. I reworked Evan Schoenberg's patch to more accurately render formatting in messages sent to yourself on MSN Applied part of a patch from Felipe Contreras to fix auto-login to hotmail for new mail (the other part was to make it work on win32, but I think that's no longer needed), and I made sure that the temporary file used is deleted at the end of the session (mentioned in patch 1059682 by Nigel Horne) Applied patch 1073317 by Nigel Horne - even though I think it may not be strictly necessary, it's probably safer like this. I'm committing Felipe's new MSN icon too, I think it's much better, and so does everyone else who's expressed an opinion. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 28 Nov 2004 18:13:18 +0000
parents 3016b1b32339
children f776e117c17b
comparison
equal deleted inserted replaced
10274:3016b1b32339 10275:d9468bd22b7c
212 msg->msnslp_footer.value = GUINT32_FROM_BE(footer.value); 212 msg->msnslp_footer.value = GUINT32_FROM_BE(footer.value);
213 } 213 }
214 else 214 else
215 { 215 {
216 msg->body_len = payload_len - (tmp - tmp_base); 216 msg->body_len = payload_len - (tmp - tmp_base);
217 msg->body = g_memdup(tmp, msg->body_len); 217 msg->body = g_memdup(tmp, msg->body_len + 1);
218 } 218 }
219 219
220 g_free(tmp_base); 220 g_free(tmp_base);
221 } 221 }
222 222