Mercurial > pidgin.yaz
changeset 7111:b9664e6257b5
[gaim-migrate @ 7678]
faceprint pointed out that anonymous warnings in CVS crash.
I fixed the problem.
I caused the problem with my away-in-tooltip changes.
(I changed aim_userinfo_t->sn from a static buffer to a dynamically
allocated string.)
I apologized.
I drank some orange juice.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 01 Oct 2003 21:23:25 +0000 |
parents | b003397b16fe |
children | cc1d09631513 |
files | src/protocols/oscar/oscar.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c Wed Oct 01 15:23:49 2003 +0000 +++ b/src/protocols/oscar/oscar.c Wed Oct 01 21:23:25 2003 +0000 @@ -3608,7 +3608,7 @@ userinfo = va_arg(ap, aim_userinfo_t *); va_end(ap); - serv_got_eviled(gc, (userinfo && userinfo->sn[0]) ? userinfo->sn : NULL, (newevil/10.0) + 0.5); + serv_got_eviled(gc, (userinfo && userinfo->sn) ? userinfo->sn : NULL, (newevil/10.0) + 0.5); return 1; }