akregator is not crash proof
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
KDE PIM |
New
|
High
|
|||
kdepim (Ubuntu) |
Fix Released
|
Undecided
|
Unassigned |
Bug Description
Binary package hint: akregator
Sometimes, my laptop runs flat out of juice, while in suspend. After a full boot, akregator (as part of kontact) crashes. If the current part in kantact was akregator before the depleted power situation, then kontact crashes. Removing everything in ~\.kde\

|
#10 |

|
#11 |
Created attachment 13495
The strace output for the failing execution

|
#12 |
Have you upgraded to 3.5.0? Does Akregator work now for you?

|
#13 |
Created attachment 14131
Backtrace produced by KDE crash handler
Akregator crashes on startup saying "Communication problem with akregator, it
probably crashed." This problem started when I upgraded to KDE 3.5.0 and also
upgraded akregator with packages obtained from
http://

|
#14 |
Pasting the backtrace:
(no debugging symbols found)
[KCrash handler]
#3 0x4241f89a in c4_FormatB::Define ()
from /usr/lib/
#4 0x4242491b in c4_HandlerSeq:
from /usr/lib/
#5 0x42424e7a in c4_Persist::LoadAll ()
from /usr/lib/
#6 0x4242509c in c4_Storage:
from /usr/lib/
#7 0x42407e54 in Akregator:
from /usr/lib/
#8 0x4240844a in Akregator:
from /usr/lib/
#9 0x400c1e96 in Akregator:
from /usr/lib/
#10 0x400c2a02 in Akregator:
from /usr/lib/
#11 0x400c2e22 in Akregator:
from /usr/lib/
#12 0x400c339a in Akregator:
from /usr/lib/
#13 0x422e49ba in Akregator:
from /usr/lib/
#14 0x422e4d4a in Akregator:
from /usr/lib/
#15 0x422dc0f5 in Akregator:
from /usr/lib/
#16 0x422b8d02 in Akregator:
from /usr/lib/
#17 0x422ee1b2 in Akregator:
from /usr/lib/
#18 0x40994415 in DCOPClient::receive () from /usr/lib/
#19 0x409949f9 in DCOPClient::send () from /usr/lib/
#20 0x40994fd0 in DCOPRef:
#21 0x08051540 in ?? ()
#22 0xbfffee40 in ?? ()
#23 0xbfffee94 in ?? ()
#24 0xbfffeeb4 in ?? ()
#25 0xbfffee74 in ?? ()
#26 0xbfffeeb4 in ?? ()
#27 0x08052fd9 in vtable for QGList ()
#28 0xbfffee84 in ?? ()
#29 0xbfffee48 in ?? ()
#30 0x40268ea2 in free () from /lib/tls/libc.so.6
#31 0x408e3684 in KUniqueApplicat
from /usr/lib/
#32 0x408e4fc9 in KUniqueApplicat
from /usr/lib/
#33 0x40cb5b57 in QObject:
#34 0x41046055 in QSignal::signal () from /usr/lib/
#35 0x40cd3a40 in QSignal::activate () from /usr/lib/
#36 0x40cdb354 in QSingleShotTime
#37 0x40c4b698 in QApplication:
#38 0x40c4b8b6 in QApplication:
#39 0x408d1abc in KApplication:
#40 0x40bdb5e5 in QApplication:
#41 0x40c3c98c in QEventLoop:
#42 0x40bef35c in QEventLoop:
#43 0x40c63da2 in QEventLoop:
#44 0x40c63ccb in QEventLoop::exec () from /usr/lib/
#45 0x40c4a225 in QApplication::exec () from /usr/lib/
#46 0x08050d80 in ?? ()
#47 0xbffff664 in ?? ()
#48 ...

|
#15 |
*** Bug 119476 has been marked as a duplicate of this bug. ***

|
#16 |
*** Bug 120446 has been marked as a duplicate of this bug. ***

|
#17 |
It seems that Akregator crashes while accessing the backend corrupt the metakit storage, which causes crashes then at startup.
A workaround is to move ~/.kde/
It would be _very_ useful if someone experiencing this crash could zip the files in Archive/ and send them to me (frank.osterfeld at gmail.com) and also his feeds.opml. (If you want to help even more, identify the exact archive file that causes the crash).

|
#18 |
SVN commit 513455 by osterfeld:
Lock archive to avoid metakit archive corruption due to multiple write access.
Usually Akregator being a KUniqueApplication avoids multiple Akregator instances accessing the archive, but there seem to
be some cases where KUniqueApp is not safe enough (right after update, multiple KDE sessions, when using --nofork option).
So we lock the archive like KMail does: if locking fails, show an error message to the user, giving him the possibility to
either continue without archive, or to force access.
As this is a severe bug (multiple write access can corrupt archives, which can make Akregator crash at startup), I think
making use of the message unfreeze is justified.
CCBUG: 116482
CCMAIL:<email address hidden>
CCMAIL:<email address hidden>
M +133 -1 akregator_part.cpp
M +2 -0 akregator_part.h
A kcursorsaver.h [License: no copyright]
--- branches/
@@ -56,6 +56,13 @@
#include <qwidgetlist.h>
#include <private/
+#include <cerrno>
+#include <sys/types.h>
+#include <signal.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+
#include "aboutdata.h"
#include "actionmanageri
#include "akregator_part.h"
@@ -68,6 +75,7 @@
#include "frame.h"
#include "article.h"
#include "kernel.h"
+#include "kcursorsaver.h"
#include "notificationma
#include "pageviewer.h"
#include "plugin.h"
@@ -135,8 +143,21 @@
m_storage = 0;
Backend:
+
if (factory != 0)
- m_storage = factory-
+ {
+
+ if (Settings:
+ {
+ if (tryToLock(
+ m_storage = factory-
+ else
+ m_storage = dummyFactory-
+ }
+ else
+ m_storage = factory-
+ }
+
if (!m_storage) // Houston, we have a problem
{
@@ -877,6 +898,117 @@
return false;
}
+static QString getMyHostName()
+{
+ char hostNameC[256];
+ // null terminate this C string
+ hostNameC[255] = 0;
+ // set the string to 0 length if gethostname fails
+ if(gethostname(
+ hostNameC[0] = 0;
+ return QString:
+}
+// taken from KMail
+bool Part::tryToLock
+{
+// Check and create a lock file to prevent concurrent access to metakit archive
+ QString appName = kapp->instanceN
+ if ( appName.isEmpty() )
+ appName = "akregator";
+
+ QString programName;
+ const KAboutData *about = kapp->aboutData();
+ if ( about )
+ programName = about->
+ if ( programName.
+ programName = i18n("Akregator");
+
+ QString lockLocation = locateLocal("data", "akregator/lock");
+ KSimpleConfig config(
+ int oldPid = config.
+ const QString oldHostName = config.readEnt...

|
#19 |
Are you still interested in a corrupted file? I have one :)

|
#20 |
*** This bug has been marked as a duplicate of 121826 ***

|
#21 |
eh, wrong direction. need coffee.

|
#22 |
*** Bug 121826 has been marked as a duplicate of this bug. ***

|
#23 |
*** Bug 124201 has been marked as a duplicate of this bug. ***

|
#24 |
*** Bug 129452 has been marked as a duplicate of this bug. ***

|
#25 |
*** Bug 130224 has been marked as a duplicate of this bug. ***

|
#26 |
Ken writes in 130224:
"This happened after a power outage so I am not surprised something got
corrupted. [...]"

|
#27 |
Hi !
I got a problem starting akregator after a machine crash. It's due to a corrupted archive file because moving my archive folder solved the startup issue. But I'm a bit puzzled : how can I identify which mk4 is causing the crash ? It looks like moving some mk4 files out of the Archive folder is making Akregator hang (not crash).
Thus a little feature request : could it be possible to display on output (when launching from the command line) which mk4 file is being read/parsed ? It would be easier to identify the corrupted one.

|
#28 |
According to the other bugs I've seen around, I guess this is an upstream problem with metakit not handling correctly corrupted archive files. So it should probably be reported here : http://
26 comments hidden
Loading more comments
|
view all 296 comments |

Fred van Zwieten (fvzwieten) wrote : | #1 |
Update: just found out that removing the archive map and the lock file from ~/.kde/

Fred van Zwieten (fvzwieten) wrote : | #2 |
I'm running kubuntu dapper with all updates up till now (15-aug-06). Running KDE 3.5.4 with kontact v1.2.3 and akregator v1.2.4

Andreas Simon (andreas-w-simon) wrote : | #3 |
This looks very much like upstream KDE bug #116482. When the system crashes or when a power outage happens, akregator's archive gets corrupted which causes akgregator to segfault.
Changed in kdepim: | |
status: | Unknown → Confirmed |
25 comments hidden
Loading more comments
|
view all 296 comments |

|
#29 |
*** Bug 117978 has been marked as a duplicate of this bug. ***

|
#30 |
*** Bug 128313 has been marked as a duplicate of this bug. ***
25 comments hidden
Loading more comments
|
view all 296 comments |

Scott Beamer (angrykeyboarder) wrote : | #4 |
Just wondering...
Is *any* application "crash-proof"?
26 comments hidden
Loading more comments
|
view all 296 comments |

|
#31 |
*** Bug 132411 has been marked as a duplicate of this bug. ***

|
#32 |
*** Bug 137976 has been marked as a duplicate of this bug. ***

|
#33 |
I also have a crash at sturtup. This is with Akregator 3.5.5 on Gentoo Linux. Here is the backtrace:
Using host libthread_db library "/lib/libthread
[Thread debugging using libthread_db enabled]
[New Thread -1244051760 (LWP 1558)]
[KCrash handler]
#6 c4_Column:
#7 0xb5967b73 in c4_FormatV:
at format.cpp:1026
#8 0xb59681ee in c4_FormatV::Get (this=0x85bdbb8, index_=0,
length_
#9 0xb596b790 in c4_Handler:
buf_
#10 0xb597b237 in c4_Sequence::Get (this=0x85be370, index_=0, propId_=35,
buf_
#11 0xb596fb4a in c4_Reference:
at ./../include/
#12 0xb597aab7 in c4_ViewRef:
at viewx.cpp:643
#13 0xb5974e15 in c4_Storage:
name_
#14 0xb597504d in c4_Storage::GetAs (this=0x855eea0,
description
at store.cpp:279
#15 0xb5955279 in FeedStorageMK4Impl (this=0x85bdf70, url=@0x85bde00,
main=0x8091458) at feedstoragemk4i
#16 0xb5958e7a in Akregator:
this=0x8091458, url=@0x85bde00) at storagemk4impl.
#17 0xb7f7b2e7 in Akregator:
at feed.cpp:221
#18 0xb7f7c14a in Akregator:
#19 0xb7f878ba in Akregator:
node=
#20 0xb7f8784d in Akregator:
node=
#21 0xb7f87d74 in Akregator:
doc=
#22 0xb5b625fc in Akregator:
doc=
#23 0xb5b59a22 in Akregator:
at akregator_
#24 0xb5b56b94 in Akregator:
at akregator_
#25 0xb5b59fd2 in Akregator:
at akregator_
#26 0xb5b6c156 in Akregator:
fun=
replyData=
#27 0xb6dd1fa8 in DCOPClient::receive (this=0x8063c38, objId=@0xbfc4c2a4,
fun=
replyData=
#28 0xb6dd27ee in DCOPClient::send (this=0x8063c38, remApp=@0xbfc4c29c,
remObjId=
at dcopclient.cpp:1060
#29 0xb6dcba03 in DCOPRef:

|
#34 |
I just upgraded to 3.5.6 an the crash remains.

|
#35 |
*** Bug 141665 has been marked as a duplicate of this bug. ***
29 comments hidden
Loading more comments
|
view all 296 comments |

Sarah Kowalik (hobbsee-deactivatedaccount) wrote : | #5 |
will attempt to grab that patch post-beta
Changed in kdepim: | |
assignee: | nobody → hobbsee |
status: | Unconfirmed → In Progress |

Andrew Ash (ash211) wrote : | #6 |
Were you able to get that patch into feisty, hobbsee?

Sarah Kowalik (hobbsee-deactivatedaccount) wrote : | #7 |
no.
it'll be in kde 3.5.7, out soon.
Changed in kdepim: | |
status: | In Progress → Fix Committed |

Sarah Kowalik (hobbsee-deactivatedaccount) wrote : | #8 |
fixed in gutsy. (or will be, when i get it uploaded)
Changed in kdepim: | |
status: | Fix Committed → Fix Released |
27 comments hidden
Loading more comments
|
view all 296 comments |

|
#36 |
Seems this is the right one. It happens to me as well on kde 3.5.7. This is my backtrace:
Using host libthread_db library "/lib/i686/
[Thread debugging using libthread_db enabled]
[New Thread -1243031856 (LWP 9057)]
[KCrash handler]
#6 0xb7cbba1c in memcpy () from /lib/i686/
#7 0xb5707153 in c4_String::Init (this=0xb562cc6c, p=0x80aa39b, n=135651325)
at /tmp/buildd/
#8 0xb571bb03 in c4_HandlerSeq:
selfDesc_=true)
at /tmp/buildd/
#9 0xb571fea5 in c4_Persist::LoadAll (this=0x80aa2e8)
at /tmp/buildd/
#10 0xb572010d in c4_Storage (this=0x80abf60,
fname_
at /tmp/buildd/
#11 0xb5702971 in Akregator:
autoCommit=
at /tmp/buildd/
#12 0xb5a17aab in Part (this=0x8116528, parentWidget=
parent=
at /tmp/buildd/
#13 0xb5a25808 in KParts:
this=0x81102a8, parentWidget=
widgetName=
name=0x8052f3d "akregator_part",
className=
at /usr/include/
#14 0xb7f6177f in KParts:
parentWidge
parent=
classname=
at /tmp/buildd/
#15 0xb7f617e1 in KParts:
parent=
classname=
at /tmp/buildd/
#16 0xb76a3931 in KLibFactory::create (this=0x81102a8, parent=0x8098500,
name=0x8052f3d "akregator_part",
classname=
at /tmp/buildd/
#17 0x08051dc7 in Akregator:
at /tmp/buildd/
#18 0x080524e9 in Akregator:
at /tmp/buildd/
#19 0xb7769b86 in KUniqueApplicat
at /tmp/buildd/
#20 0xb776ff28 in KUniqueApplicat
_o=0xbf8ad098) at ./kuniqueapplic
#21 0xb70a9e1b in QObject:
o=0xbf8a...

|
#37 |
The file I got is 6MB, unfortunately I have no web space available. If you are interested on it, please let me know and also how should I send it to you.

|
#38 |
I am having a crash on Startup also. It started after an update to KDE 3.5.7 release 10.1 which was followed by a power hit which caused the computer to restart. I am not certain which was the cause of the problem. Here is the trace:
System configuration startup check disabled.
Using host libthread_db library "/lib/libthread
[Thread debugging using libthread_db enabled]
[New Thread -1235679536 (LWP 13322)]
[KCrash handler]
#9 0xb6f444cc in memcpy () from /lib/libc.so.6
#10 0xb59e22c3 in c4_String::Init ()
from /opt/kde3/
#11 0xb59d90d3 in c4_HandlerSeq:
from /opt/kde3/
#12 0xb59dcaa5 in c4_Persist::LoadAll ()
from /opt/kde3/
#13 0xb59e170d in c4_Storage:
from /opt/kde3/
#14 0xb59c5b06 in Akregator:
from /opt/kde3/
#15 0xb59c7f21 in Akregator:
from /opt/kde3/
#16 0xb7f422c8 in Akregator:
from /opt/kde3/
#17 0xb7f43030 in Akregator:
from /opt/kde3/
#18 0xb7f4d805 in Akregator:
from /opt/kde3/
#19 0xb7f4d90c in Akregator:
from /opt/kde3/
#20 0xb7f4dd7e in Akregator:
from /opt/kde3/
#21 0xb6274cdc in Akregator:
from /opt/kde3/
#22 0xb62703ab in Akregator:
from /opt/kde3/
#23 0xb626df4c in Akregator:
from /opt/kde3/
#24 0xb626a91b in Akregator:
from /opt/kde3/
#25 0xb6269770 in Akregator:
from /opt/kde3/
#26 0xb7812e77 in DCOPClient::receive () from /opt/kde3/
#27 0xb7813602 in DCOPClient::send () from /opt/kde3/
#28 0xb7813c3f in DCOPRef:
#29 0x08050796 in Akregator:
#30 0xb798f26d in KUniqueApplicat
from /opt/kde3/
#31 0xb79d4eb8 in KUniqueApplicat
from /opt/kde3/
#32 0xb738bf1d in QObject:
from /usr/lib/
#33 0xb76c70ae in QSignal::signal () from /usr/lib/
#34 0xb73a7ff7 in QSignal::activate () from /usr/lib/
#35 0xb73af383 in QSingleShotTime
from /usr/lib/
#36 0xb732c9c7 in QApplication:
from /usr/lib/
#37 0xb732d791 in QApplication:
#38 0xb79e4202 in KApplication:
#39 0xb7321bd3 in QEventL...

|
#39 |
same here on Kubuntu Feisty KDE 3.5.7.
Akregator does not start but eats 100% CPU until killed.
Removing my feeds (the OPML-file) "help" in that starting Akregator produces a normal crash.
Only when removing the Archive-folder in .kde/share/
Mine is only 450K so I'll attach it here.
This has happened before already, so I know the procedure, but I don't know the cause. I am using Akregator embedded in Kontact, maybe the Akregator-Archive got corrupted when Kontact crashed.

|
#40 |
Created attachment 20916
problematic feed-archive
when uncompressing this archive to your akregator-
crash at startup.
30 comments hidden
Loading more comments
|
view all 296 comments |

grauscho (grauscho) wrote : | #9 |
When shutting down three days ago, there was a kernel panic before syncing the disks.
After that, akregator crashed, too. I'm running KDE 3.5.8, Kontact
Version 1.2.4 (enterprise 0.20070907.709405) on Gutsy.
To resolve this, I deleted two files in .kde/share/
akregator seems to work again now.
Changed in kdepim: | |
importance: | Unknown → High |
247 comments hidden
Loading more comments
|
view all 296 comments |

|
#257 |
*** Bug 280579 has been marked as a duplicate of this bug. ***

|
#258 |
*** Bug 281645 has been marked as a duplicate of this bug. ***

|
#259 |
*** Bug 282563 has been marked as a duplicate of this bug. ***

|
#260 |
(In reply to comment #242)
> For anybody hitting this issue, here's an easy way to identify the corrupt mk4
> file:
>
> cd ~/.kde4/
> for i in *.mk4; do echo $i; ./mku.linux $i > /dev/null; done
>
> Each file name followed by "Segmentation fault" is corrupt and should be
> removed in order to successfuly start akregator.
I wouldn't say so, because I couldn't find where I could get this ./mku.linux executable.
Another way to detect which mk4 file in ~/.kde4/
When oh when are you KDE guys going to add a decent backend to akregator?! Akregator is destroying my feed data too often and it's getting my the nerves. And there seems to be no recovery option *sob* =[

|
#261 |
I don't remember exactly where I got the mku.utility initially, I must have copied it there and later thought Akregator installed it... Anyway, a google search revealed it's part of the mkstats.kit utility http://

|
#262 |
*** Bug 291403 has been marked as a duplicate of this bug. ***

|
#263 |
*** Bug 296791 has been marked as a duplicate of this bug. ***

|
#264 |
*** Bug 298843 has been marked as a duplicate of this bug. ***

|
#265 |
*** Bug 299644 has been marked as a duplicate of this bug. ***

|
#266 |
*** Bug 305250 has been marked as a duplicate of this bug. ***

|
#267 |
*** Bug 305938 has been marked as a duplicate of this bug. ***

|
#268 |
*** Bug 307368 has been marked as a duplicate of this bug. ***

|
#269 |
*** Bug 308076 has been marked as a duplicate of this bug. ***

|
#270 |
*** Bug 313221 has been marked as a duplicate of this bug. ***

|
#271 |
*** Bug 313074 has been marked as a duplicate of this bug. ***

|
#272 |
*** Bug 313554 has been marked as a duplicate of this bug. ***

|
#273 |
*** Bug 318425 has been marked as a duplicate of this bug. ***

|
#274 |
*** Bug 330095 has been marked as a duplicate of this bug. ***

|
#275 |
149 users , 9 years , 274 comments , any solution ?

|
#276 |
Cleaning archive doing:
mv ./.kde/
fixed the crash

|
#277 |
*** Bug 333440 has been marked as a duplicate of this bug. ***

|
#278 |
*** Bug 331119 has been marked as a duplicate of this bug. ***

|
#279 |
*** Bug 326343 has been marked as a duplicate of this bug. ***

|
#280 |
*** Bug 255744 has been marked as a duplicate of this bug. ***

|
#281 |
*** Bug 353607 has been marked as a duplicate of this bug. ***

|
#282 |
*** Bug 379496 has been marked as a duplicate of this bug. ***

|
#283 |
*** Bug 382936 has been marked as a duplicate of this bug. ***

|
#284 |
*** Bug 384207 has been marked as a duplicate of this bug. ***

|
#285 |
The correct location of feeds.opml seems to be in ~/.local/
After a failed resume from suspend to RAM (which since several weeks is a common experience with openSUSE Leap/Tumbleweed with both NVidia and AMD graphics) my feeds.opml got corrupted (Bug 384207).
Is there a backup to be found somewhere may be?

|
#286 |
The only backup is feeds.opml~ in the same directory.

|
#287 |
*** Bug 386013 has been marked as a duplicate of this bug. ***

|
#288 |
*** Bug 398866 has been marked as a duplicate of this bug. ***

|
#289 |
*** Bug 398557 has been marked as a duplicate of this bug. ***

|
#290 |
*** Bug 398559 has been marked as a duplicate of this bug. ***

|
#291 |
Why did you mark this as fixed, rubi ortiz?

|
#292 |
Hardly any commits in https:/
Changed in kdepim: | |
status: | Confirmed → New |

|
#293 |
*** This bug has been confirmed by popular vote. ***
Changed in kdepim: | |
status: | New → Unknown |

|
#294 |
*** Bug 418507 has been marked as a duplicate of this bug. ***

|
#295 |
*** Bug 422594 has been marked as a duplicate of this bug. ***

|
#296 |
Application: kdeconnectd (1.4.0)
Qt Version: 5.14.2
Frameworks Version: 5.70.0
Operating System: Linux 5.7.0-2parrot2-
Distribution: Parrot GNU/Linux 4.10
-- Information about the crash:
<In detail, tell us what you were doing when the application crashed.>
-- Backtrace:
Application: KDE Connect Daemon (kdeconnectd), signal: Segmentation fault
Using host libthread_db library "/lib/x86_
[Current thread is 1 (Thread 0x7f5748672600 (LWP 83677))]
Thread 4 (Thread 0x7f57449a4700 (LWP 83731)):
#0 0x00007f574ca11e8c in read () from /lib/x86_
#1 0x00007f574b60df4f in ?? () from /lib/x86_
#2 0x00007f574b5c633e in g_main_
#3 0x00007f574b5c6792 in ?? () from /lib/x86_
#4 0x00007f574b5c690f in g_main_
#5 0x00007f574cfab90b in QEventDispatche
#6 0x00007f574cf5389b in QEventLoop:
#7 0x00007f574cd7e8be in QThread::exec() () from /lib/x86_
#8 0x00007f574cd7f988 in ?? () from /lib/x86_
#9 0x00007f574bf6bea7 in start_thread () from /lib/x86_
#10 0x00007f574ca20daf in clone () from /lib/x86_
Thread 3 (Thread 0x7f5745c71700 (LWP 83723)):
#0 0x00007f574b6127b9 in g_mutex_lock () from /lib/x86_
#1 0x00007f574b5c5d7a in g_main_
#2 0x00007f574b5c671b in ?? () from /lib/x86_
#3 0x00007f574b5c690f in g_main_
#4 0x00007f574cfab90b in QEventDispatche
#5 0x00007f574cf5389b in QEventLoop:
#6 0x00007f574cd7e8be in QThread::exec() () from /lib/x86_
#7 0x00007f574d1fc507 in ?? () from /lib/x86_
#8 0x00007f574cd7f988 in ?? () from /lib/x86_
#9 0x00007f574bf6bea7 in start_thread () from /lib/x86_
#10 0x00007f574ca20daf in clone () from /lib/x86_
Thread 2 (Thread 0x7f5747890700 (LWP 83707)):
#0 0x00007f574ca163bf in poll () from /lib/x86_
#1 0x00007f574b299d02 in ?? () from /lib/x86_
#2 0x00007f574b29b98a in xcb_wait_for_event () from /lib/x86_
#3 0x00007f5748280dc0 in ?? () from /lib/x86_
#4 0x00007f574cd7f988 in ?? () from /lib/x86_
#5 0x00007f574bf6bea7 in start_thread () from /lib/x86_
#6 0x00007f574ca20daf in clone () from /lib/x86_
Changed in kdepim: | |
status: | Unknown → New |
Version: 3.5rc1 (using KDE KDE 3.5.0)
Installed from: SuSE RPMs
Akregator cannot be started for me since I upgraded to RC1.
Beta2 was ok.
starting akregator from the command line, I get the following message:
akregator: ERROR: Communication problem with akregator, it probably crashed.
The crash window does not appear, however, strace output suggests akregator actually crashes.
I see also this line:
*** glibc detected *** malloc(): memory corruption: 0x08393f88 ***
I'll attach the strace output.