# HG changeset patch # User Eric Warmenhoven # Date 966629621 0 # Node ID 26e96119d5a5c37dd9b8887d2ab5ad38fff7ffbe # Parent 8e7ad10b5f26d7f33b4f68977e3119001630b5b9 [gaim-migrate @ 732] more libfaim changes committer: Tailor Script diff -r 8e7ad10b5f26 -r 26e96119d5a5 TODO --- a/TODO Fri Aug 18 19:21:11 2000 +0000 +++ b/TODO Fri Aug 18 20:13:41 2000 +0000 @@ -13,6 +13,7 @@ You know, I really like the gnome look to some apps but I dont want to tie gnome into gaim. oh life sucks sometimes hehe. + Oscar can send messages longer than TOC, and DirectIM has no limit. Syd is cool and gave all of these ideas: Have multiple tickers in the same window, one for buddies diff -r 8e7ad10b5f26 -r 26e96119d5a5 libfaim/CHANGES --- a/libfaim/CHANGES Fri Aug 18 19:21:11 2000 +0000 +++ b/libfaim/CHANGES Fri Aug 18 20:13:41 2000 +0000 @@ -1,6 +1,9 @@ No release numbers ------------------ + - Fri Aug 18 19:52:54 UTC 2000 + - Fix the non-pthread bug + - Thu Aug 17 23:19:40 UTC 2000 - A few more leak fixes (only a few left to go...) diff -r 8e7ad10b5f26 -r 26e96119d5a5 libfaim/aim_chatnav.c --- a/libfaim/aim_chatnav.c Fri Aug 18 19:21:11 2000 +0000 +++ b/libfaim/aim_chatnav.c Fri Aug 18 20:13:41 2000 +0000 @@ -124,6 +124,7 @@ curexchange++; exchanges = realloc(exchanges, curexchange * sizeof(struct aim_chat_exchangeinfo)); + /* exchange number */ exchanges[curexchange-1].number = aimutil_get16(exchangetlv->value); innerlist = aim_readtlvchain(exchangetlv->value+2, exchangetlv->length-2); @@ -231,7 +232,7 @@ curexchange, exchanges); curexchange--; - while(curexchange) + while(curexchange >= 0) { if (exchanges[curexchange].name) free(exchanges[curexchange].name);