Hey Xaignar, what about this

The error occurred at the end of the downloading thread of the server list.
URL: http://peerates.net/servers.php
Response: 200 (Error: 0)
Download size: 1290
HTTP download thread ended
--------------------------------------------------------------------------------
A fatal error has occurred and aMule has crashed.
Please assist us in fixing this problem by posting the backtrace below in our
'aMule Crashes' forum and include as much information as possible regarding the
circumstances of this crash. The forum is located here:
http://forum.amule.org/index.php?board=67.0
If possible, please try to generate a real backtrace of this crash:
http://www.amule.org/wiki/index.php/Backtraces
----------------------------=| BACKTRACE FOLLOWS: |=----------------------------
Current version is: aMule SVN using wxGTK2 v2.8.7 (Debugging) (Snapshot: rev. 7927)
Running on: Linux 2.6.18.8-0.7-default i686
[2] CamuleApp::OnFatalException() in amule.cpp:1295
[3] wxFatalSignalHandler in /home/mroberto/usr/local/wxWidgets-2.8.7/lib/libwx_baseud-2.8.so.0[0xb77803dd]
[4] ?? in [0xb7f40420]
--------------------------------------------------------------------------------
Aborted (core dumped)
Program terminated with signal 6, Aborted.
#0 0xb7f40410 in ?? ()
(gdb) bt
#0 0xb7f40410 in ?? ()
#1 0xafb6cecc in ?? ()
#2 0x00000006 in ?? ()
#3 0xb741e801 in abort () from /lib/libc.so.6
#4 0xb77803e2 in wxFatalSignalHandler () at ./src/unix/utilsunx.cpp:1112
#5 0xb7f40420 in ?? ()
#6 0x0000000b in ?? ()
#7 0xb7778903 in wxThread::Exit (this=0x10b4f4b8, status=0x0) at ./src/unix/threadpsx.cpp:1494
#8 0xb7778c6b in wxThreadInternal::PthreadStart (thread=0x10b4f4b8) at ./src/unix/threadpsx.cpp:809
#9 0xb7778ccd in wxPthreadStart (ptr=0x10b4f4b8) at ./src/unix/threadpsx.cpp:718
#10 0xb7edb112 in start_thread () from /lib/libpthread.so.0
#11 0xb74b32ee in clone () from /lib/libc.so.6
(gdb) f 7
#7 0xb7778903 in wxThread::Exit (this=0x10b4f4b8, status=0x0) at ./src/unix/threadpsx.cpp:1494
1494 DeleteThread(this);
(gdb) l
1489 // called (in another thread context) now? It will try to access
1490 // half destroyed object which will probably result in something
1491 // very bad - but we can't protect this by a crit section unless
1492 // we make it a global object, but this would mean that we can
1493 // only call one thread function at a time :-(
1494 DeleteThread(this);
1495 pthread_setspecific(gs_keySelf, 0);
1496 }
1497 else
1498 {
(gdb)
src/unix/threadpsx.cpp:
// delete C++ thread object if this is a detached thread - user is
// responsible for doing this for joinable ones
if ( m_isDetached )
{
// FIXME I'm feeling bad about it - what if another thread function is
// called (in another thread context) now? It will try to access
// half destroyed object which will probably result in something
// very bad - but we can't protect this by a crit section unless
// we make it a global object, but this would mean that we can
// only call one thread function at a time :-(
DeleteThread(this);
pthread_setspecific(gs_keySelf, 0);
}