changeset 722:26e96119d5a5

[gaim-migrate @ 732] more libfaim changes committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 18 Aug 2000 20:13:41 +0000
parents 8e7ad10b5f26
children b54b8d64d8b8
files TODO libfaim/CHANGES libfaim/aim_chatnav.c
diffstat 3 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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...)
 
--- 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);