[gaim-migrate @ 732]

Fri, 18 Aug 2000 20:13:41 +0000

author
Eric Warmenhoven <warmenhoven@yahoo.com>
date
Fri, 18 Aug 2000 20:13:41 +0000
changeset 722
6d66ba92c6fa
parent 721
3931a1b3e9a2
child 723
ed02068d9585

[gaim-migrate @ 732]
more libfaim changes

TODO file | annotate | diff | comparison | revisions
libfaim/CHANGES file | annotate | diff | comparison | revisions
libfaim/aim_chatnav.c file | annotate | diff | comparison | revisions
--- 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);

mercurial