| Summary: | Konqueror crashes when pressing the close window link of a popup | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Felix Seeger <felix.seeger> |
| Component: | general | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | CC: | akregator-devel, ascherfy, bluedzins, isaac, jpnurmi, kde.lq8hx, niels.misc, robertknight |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Felix Seeger
2006-09-30 23:39:10 UTC
*** Bug 137091 has been marked as a duplicate of this bug. *** *** Bug 136083 has been marked as a duplicate of this bug. *** *** Bug 137130 has been marked as a duplicate of this bug. *** Confirmed. Here with line numbers (SVN rev. 602609):
#5 0x00000000 in ?? ()
#6 0xb5b44a75 in ~KonqFeedIcon (this=0x85ec120) at konqfeedicon.cpp:84
#7 0xb70c77e3 in QObject::~QObject () from /usr/share/qt3/lib/libqt-mt.so.3
#8 0xb7fa2238 in ~Part (this=0x82c7fa8, __vtt_parm=0xb6183aa8)
at part.cpp:163
#9 0xb7fa240f in ~ReadOnlyPart (this=0x82c7fa8, __vtt_parm=0xb6183aa4)
at part.cpp:314
#10 0xb5ee09ab in ~KHTMLPart (this=0x82c7fa8) at khtml_part.cpp:524
#11 0xb70c3020 in QObject::event () from /usr/share/qt3/lib/libqt-mt.so.3
#12 0xb705ab88 in QApplication::internalNotify ()
from /usr/share/qt3/lib/libqt-mt.so.3
#13 0xb705c9b7 in QApplication::notify ()
from /usr/share/qt3/lib/libqt-mt.so.3
#14 0xb776fbae in KApplication::notify (this=0xbf8febd4, receiver=0x82c7fa8,
event=0x82c6a98) at kapplication.cpp:550
#15 0xb7faa9ae in QApplication::sendEvent (receiver=0x82c7fa8,
event=0x82c6a98) at /usr/share/qt3/include/qapplication.h:520
#16 0xb705bbc0 in QApplication::sendPostedEvents ()
from /usr/share/qt3/lib/libqt-mt.so.3
#17 0xb705bcc8 in QApplication::sendPostedEvents ()
from /usr/share/qt3/lib/libqt-mt.so.3
#18 0xb700127d in QEventLoop::processEvents ()
SVN commit 603819 by osterfeld:
Do not crash when the statusbar is deleted before the feed icon plugin
BUG:134929
M +7 -1 konqfeedicon.cpp
--- branches/KDE/3.5/kdeaddons/konq-plugins/akregator/konqfeedicon.cpp #603818:603819
@@ -80,9 +80,15 @@
KGlobal::locale()->removeCatalogue("akregator_konqplugin");
m_statusBarEx = KParts::StatusBarExtension::childObject(m_part);
if (m_statusBarEx)
+ {
m_statusBarEx->removeStatusBarItem(m_feedIcon);
- delete m_feedIcon;
+ // the feed icon is child of the statusbar extension, so if the statusbar is deleted,
+ // the icon was deleted by the status bar
+ delete m_feedIcon;
+ }
+ // the icon is deleted in every case
m_feedIcon = 0L;
+
delete m_menu;
m_menu = 0L;
}
*** Bug 138268 has been marked as a duplicate of this bug. *** *** Bug 139806 has been marked as a duplicate of this bug. *** *** Bug 140018 has been marked as a duplicate of this bug. *** *** Bug 141173 has been marked as a duplicate of this bug. *** Is this fixed in current KDE 3.5.6? I still get crashes with KDE 3.5.6 and aKregator 1.2.6 I've put up this simple crash testpage http://www.wiki-lyrics.org/stuff/krash/ I think its the same issue, because http://blogs.technet.com/james/archive/2007/02/02/wikipedia-explorer.aspx (which was mentioned in one of the duplicates) still crashes konqueror when you click on the image. Fernando confirmed by mail that his kdeaddons install wasn't up-to-date. |