# HG changeset patch # User Mark Doliner # Date 1065043405 0 # Node ID b9664e6257b599e9032621680c53c1ed8a0bb552 # Parent b003397b16fed7138fffe0298cd60ceb3b86842a [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 diff -r b003397b16fe -r b9664e6257b5 src/protocols/oscar/oscar.c --- 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; }