On Thursday 11 May 2006 04:01, Dirk Stoecker wrote: > Hello, > > > when it exactly crash, on startup or when you set icq to online status? > > When I compile the debug version it crashs nearly immediately after > startup. Thought I nevertheless think it is the same bug. In normal mode > it sometimes crash itself, sometimes after clicking online, ... > I can't tell on what it depends (I will do so, when I found the problem). > It is for sure something in ICQ connection process. > > > Your backtrace in bug 115772 is diffrent from others so it is probbably > > diffrent bug, but I don't know how to reproduce it. > > Well, that problem is known. Seems only a few can reproduce this and I'm > willing to do the debugging, but as said I need a hint. > > I added several printf's and am sure, that the destructor is called > without construction first. Thought this means I need to know why. As the > backtrace shows the destruction comes out of libfam which really has > nothing to do with this at all, the real cause is hidden somewhere. > So going back after the crash is no option at the moment. I need > another starting point I can go forward from and it shouldn't be to far > away from the problem :-) > > > And also log from console would be helpful. > > There wasn't anything on console. Is there a way to get kopete more > verbose for debugging? > > I have more than 15 years experience with programming (C/ASM/C++/...) and > also debugging. But my experience with kopete is 5 days, so I need help > with that part. > > Ciao
did you compile kopete with debug enabled? (run configure like so: './configure --prefix=`kde-config --prefix` --enable-debug=full') That should give you plenty of output on the command line when running it from there. Also, don't use printf for debugging. KDE has it's own functions for that. they're called kdDebug, kdWarning. To get a backtrace from a current spot, something like so would work: 'kdDebug() << kdBacktrace() << endl;' Are you using Kopete 0.12? I can't remember if the 0.11.x series has the bugfix or not, but i'm sure the 0.12 series does. Hope this helps. -- Matt _______________________________________________ kopete-devel mailing list [email protected] https://mail.kde.org/mailman/listinfo/kopete-devel
