You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
(264) |
May
(184) |
Jun
(34) |
Jul
(41) |
Aug
(13) |
Sep
(47) |
Oct
(48) |
Nov
(19) |
Dec
(17) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(37) |
Feb
(6) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(21) |
Feb
(28) |
Mar
(15) |
Apr
(56) |
May
(11) |
Jun
(6) |
Jul
(22) |
Aug
(41) |
Sep
|
Oct
(30) |
Nov
(6) |
Dec
(8) |
2008 |
Jan
|
Feb
(1) |
Mar
(5) |
Apr
|
May
(4) |
Jun
(35) |
Jul
(21) |
Aug
(22) |
Sep
|
Oct
(21) |
Nov
(36) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
(7) |
Apr
(3) |
May
(10) |
Jun
(1) |
Jul
(20) |
Aug
(29) |
Sep
(21) |
Oct
(14) |
Nov
(23) |
Dec
(5) |
2010 |
Jan
|
Feb
(6) |
Mar
(2) |
Apr
(16) |
May
(1) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(2) |
From: Colin L. <co...@co...> - 2003-04-03 12:26:56
|
On 03 Apr 2003 at 10h22, Philip S Tellis wrote: Hi, > > 1. why my files never get attached to bug reports the first time I think it may be a mozilla bug with certain versions of mozilla. > 2. why I have not been receiving mails from any of the mailing lists - I > have to read the archives to figure out what's going on. You appear in the subscribed members for the three lists, with no special flags - i don't understand how comes :-/ maybe try to re-subscribe... Cheers, -- Colin "Life's not fair,[...] But the root password helps." -Simon Travaglia |
From: Philip S T. <phi...@gm...> - 2003-04-03 04:55:55
|
ok, two things I don't understand. 1. why my files never get attached to bug reports the first time 2. why I have not been receiving mails from any of the mailing lists - I have to read the archives to figure out what's going on. Will attach the bug report tonight. It's at home now. Philip -- The program isn't debugged until the last user is dead. |
From: Edward L. H. <el...@as...> - 2003-04-02 23:21:06
|
Hi, Its probably in the code that calls that callback somewhere inside AYTTM main src not Jabber itself. Somehow the data payload is going to NULL. I will have to track it down I think. -Edward On Wed, 2003-04-02 at 17:48, Andy wrote: > On Wednesday 02 April 2003 19:32, Edward L. Haletky wrote: > > There is a memory problem somewhere in libEBjabber around line 191. > > Looks like JConn is going to null and the code aborts. > > > > Not sure exactly what is happening here or if its related to something > > else. Efence caught it. > > I just went over the changes I made to jabber.c > [http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ayttm/ayttm/modules/jabber/jabber.c.diff?r1=1.1&r2=1.2] > and they look correct. It doesn't look like they would affect anything in > libEBjabber.c. > > Looking at the code around line 191 in libEBjabber.c though: > > 00185 void jabber_callback_handler(void *data, int source, eb_input_condition > cond) > 00186 { > 00187 JABBER_Conn *JConn=data; > 00188 /* Let libjabber do the work, it calls what we setup in > jab_packet_handler */ > 00189 jab_poll(JConn->conn, 0); > 00190 /* Is this connection still good? */ > 00191 if(!JConn->conn) { > 00192 eb_debug(DBG_JBR, "Logging out because JConn->conn is NULL\n"); > 00193 JABBERLogout(NULL); > 00194 eb_input_remove(JConn->listenerID); > 00195 } > > There's no error checking == BOOM [though why it doesn't happen at line 189 I > don't understand]. I'm not familiar with how the modules are supposed to > handle this kind of thing. Anyone? > > Andy > > > ------------------------------------------------------- > This SF.net email is sponsored by: ValueWeb: > Dedicated Hosting for just $79/mo with 500 GB of bandwidth! > No other company gives more support or power for your dedicated server > http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ > _______________________________________________ > Ayttm-devel mailing list > Ayt...@li... > https://lists.sourceforge.net/lists/listinfo/ayttm-devel |
From: Colin L. <co...@co...> - 2003-04-02 21:26:42
|
On 02 Apr 2003 at 14h32, Edward L. Haletky wrote: Hi, > > There is a memory problem somewhere in libEBjabber around line 191. > Looks like JConn is going to null and the code aborts. I'll give a look at it. But *please*, can you stop starting new threads by answering to other mails ? It messes up threads and make things much harder to find back. Just double-click on the email address or anything, that isn't harder than hitting Reply... -- \|/ ____ \|/ Colin "@'/ ,. \`@" http://www.geekounet.org/ /_| \__/ |_\ \__U_/ |
From: Andy <ma...@2w...> - 2003-04-02 20:50:44
|
On Wednesday 02 April 2003 19:32, Edward L. Haletky wrote: > There is a memory problem somewhere in libEBjabber around line 191. > Looks like JConn is going to null and the code aborts. > > Not sure exactly what is happening here or if its related to something > else. Efence caught it. I just went over the changes I made to jabber.c=20 [http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ayttm/ayttm/modules/jabbe= r/jabber.c.diff?r1=3D1.1&r2=3D1.2]=20 and they look correct. It doesn't look like they would affect anything i= n=20 libEBjabber.c. Looking at the code around line 191 in libEBjabber.c though: 00185 void jabber_callback_handler(void *data, int source, eb_input_condi= tion=20 cond) 00186 { 00187 JABBER_Conn *JConn=3Ddata; 00188 /* Let libjabber do the work, it calls what we setup in=20 jab_packet_handler */ 00189 jab_poll(JConn->conn, 0); 00190 /* Is this connection still good? */ 00191 if(!JConn->conn) { 00192 eb_debug(DBG_JBR, "Logging out because JConn->conn is NULL\n"); 00193 JABBERLogout(NULL); 00194 eb_input_remove(JConn->listenerID); 00195 } There's no error checking =3D=3D BOOM [though why it doesn't happen at li= ne 189 I=20 don't understand]. I'm not familiar with how the modules are supposed to= =20 handle this kind of thing. Anyone? Andy |
From: Edward L. H. <el...@as...> - 2003-04-02 20:23:53
|
Hi, There is a memory problem somewhere in libEBjabber around line 191. Looks like JConn is going to null and the code aborts. Not sure exactly what is happening here or if its related to something else. Efence caught it. -Edward On Tue, 2003-04-01 at 17:16, Andy wrote: > On Tuesday 01 April 2003 21:00, Andy wrote: > > Hi guys. I just committed changes to several files to fix memory leaks > > [oops, forgot I needed a password - checked in the Changelog and configure.in > now] > > Andy > > > ------------------------------------------------------- > This SF.net email is sponsored by: ValueWeb: > Dedicated Hosting for just $79/mo with 500 GB of bandwidth! > No other company gives more support or power for your dedicated server > http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ > _______________________________________________ > Ayttm-devel mailing list > Ayt...@li... > https://lists.sourceforge.net/lists/listinfo/ayttm-devel |
From: Andy <ma...@2w...> - 2003-04-02 19:50:48
|
On Wednesday 02 April 2003 18:41, Philip S Tellis wrote: > i've posted a bug containing a valgrind report on memory leaks. whoeve= r > wants to fix it can have a look. There doesn't seem to be any files attached to the report... Andy |
From: Philip S T. <phi...@gm...> - 2003-04-02 19:42:14
|
i've posted a bug containing a valgrind report on memory leaks. whoever wants to fix it can have a look. Philip |
From: Colin L. <co...@co...> - 2003-04-02 16:26:51
|
Hi, we'll release tomorrow if noone is against it. -- Colin |
From: Colin L. <co...@co...> - 2003-04-01 20:42:17
|
On 01 Apr 2003 at 21h00, Andy wrote: Hi, > That said, I would appreciate someone going over the changes I submitted > [esp. MSN Colin], because it was getting pretty mind numbing :-) I did > compile and test, but I don't use all the services. Seems fine! (I only read your diffs and tested MSN, but i can't see how it could fail :) -- Colin http://dudusdl.sf.net/ : a free Puzzle Bubble clone |
From: Andy <ma...@2w...> - 2003-04-01 20:17:21
|
On Tuesday 01 April 2003 21:00, Andy wrote: > Hi guys. I just committed changes to several files to fix memory leaks [oops, forgot I needed a password - checked in the Changelog and configur= e.in=20 now] Andy |
From: Andy <ma...@2w...> - 2003-04-01 19:01:24
|
Hi guys. I just committed changes to several files to fix memory leaks c= aused=20 by the use of value_pair_get_value(). This function callocs a string thr= ough=20 unescape_string() and it was being used like this all over the place: =09strncpy(ala->password, value_pair_get_value(pairs, "PASSWORD"), 255); Just a heads-up if you are going to use that function that the temp needs= to=20 be free'd. That said, I would appreciate someone going over the changes I submitted = [esp.=20 MSN Colin], because it was getting pretty mind numbing :-) I did compile= and=20 test, but I don't use all the services. Andy |
From: Andy <ma...@2w...> - 2003-04-01 17:01:26
|
On Tuesday 01 April 2003 08:14, Colin Leroy wrote: > Hi, > > I'll delete the old CVS repository on savannah (in order to make sure > users update their CVSROOT) soon. > Before doing so i'll wait for a sign from you, Andy, as I don't want to > fuck up your new_prefs branch before you have been able to re-create it= on > sf.net :) Well, I think I've got everything over on sf now - I have paranoid local=20 copies of everything just in case - so go ahead! > html is now in ayttm-html module, same CVSROOT > (:ext:dev...@cv...:/cvsroot/ayttm), auto-updated > every half-hour. > > Old html on savannah has been updated to reflect the new home, but thei= r > script are failing once again so the change isn't visible right now :-D Heh - as if we needed futher proof :-) Andy |
From: Colin L. <co...@co...> - 2003-04-01 09:15:13
|
Hi, I'll delete the old CVS repository on savannah (in order to make sure users update their CVSROOT) soon. Before doing so i'll wait for a sign from you, Andy, as I don't want to fuck up your new_prefs branch before you have been able to re-create it on sf.net :) html is now in ayttm-html module, same CVSROOT (:ext:dev...@cv...:/cvsroot/ayttm), auto-updated every half-hour. Old html on savannah has been updated to reflect the new home, but their script are failing once again so the change isn't visible right now :-D Cheers, -- Colin http://dudusdl.sf.net/ : a free Puzzle Bubble clone |