Your message dated Thu, 15 Apr 2004 16:26:02 +0200 with message-id <[EMAIL PROTECTED]> and subject line Fixed has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 31 Mar 2004 18:52:40 +0000 >From [EMAIL PROTECTED] Wed Mar 31 10:52:40 2004 Return-path: <[EMAIL PROTECTED]> Received: from fep04-mail.bloor.is.net.cable.rogers.com [66.185.86.74] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1B8kpM-0008LZ-00; Wed, 31 Mar 2004 10:52:40 -0800 Received: from sophocles ([142.150.24.78]) by fep04-mail.bloor.is.net.cable.rogers.com (InterMail vM.5.01.05.12 201-253-122-126-112-20020820) with ESMTP id <[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>; Wed, 31 Mar 2004 13:51:17 -0500 Received: from seneca by sophocles with local (Exim 3.36 #1 (Debian)) id 1B8kp4-0000rh-00 for <[EMAIL PROTECTED]>; Wed, 31 Mar 2004 13:52:22 -0500 Date: Wed, 31 Mar 2004 13:52:22 -0500 From: Seneca <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: konqueror SEGVs when image display/undisplay is done with CSS Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.5.1+cvs20040105i Sender: Seneca Cunningham <[EMAIL PROTECTED]> X-Authentication-Info: Submitted using SMTP AUTH LOGIN at fep04-mail.bloor.is.net.cable.rogers.com from [142.150.24.78] using ID <[EMAIL PROTECTED]> at Wed, 31 Mar 2004 13:51:17 -0500 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-2.0 required=4.0 tests=BAYES_00,HAS_PACKAGE, HTML_10_20,HTML_MESSAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: Package: konqueror Version: 4:3.2.1-1 While testing some updates to my website, I found that konqueror would SEGV while viewing a certain page while displaying and undisplaying images with CSS. A short example of some code that causes konqueror to SEGV (the image used/existance does not matter): -----Example----- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> body{float: left;} ul li img{display: none;} ul li:hover > img{display: inline; float: right;} </style> <title>An almost contentless website</title> </head> <body> <ul> <li>foo<img src="/usr/share/bmp/Skins/Default/main.bmp" alt="foo" /> </li> </ul> </body> </html> ---End example--- ---GDB output---- (gdb) run index.html Starting program: /usr/bin/konqueror index.html (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...[New Thread 1086082112 (LWP 22202)] (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 1086082112 (LWP 22202)] 0x41ace217 in QMemArray<QPoint>::detach() () from /usr/lib/libkhtml.so.4 (gdb) bt #0 0x41ace217 in QMemArray<QPoint>::detach() () from /usr/lib/libkhtml.so.4 #1 0x41ace2b3 in QMemArray<QPoint>::detach() () from /usr/lib/libkhtml.so.4 #2 0x41ae4863 in QMemArray<QPoint>::detach() () from /usr/lib/libkhtml.so.4 #3 0x41ae46b0 in QMemArray<QPoint>::detach() () from /usr/lib/libkhtml.so.4 #4 0x41ae4544 in QMemArray<QPoint>::detach() () from /usr/lib/libkhtml.so.4 #5 0x41a7a11c in KStaticDeleter<KHTMLPageCache>::~KStaticDeleter() () from /usr/lib/libkhtml.so.4 #6 0x41a3316e in KHTMLView::dispatchMouseEvent(int, DOM::NodeImpl*, bool, int, QMouseEvent*, bool, int) () from /usr/lib/libkhtml.so.4 #7 0x41a2e58f in KHTMLView::viewportMouseMoveEvent(QMouseEvent*) () from /usr/lib/libkhtml.so.4 #8 0x438a189b in QScrollView::eventFilter(QObject*, QEvent*) () from /usr/lib/libqt-mt.so.3 #9 0x41a30001 in KHTMLView::eventFilter(QObject*, QEvent*) () from /usr/lib/libkhtml.so.4 #10 0x43790c4e in QObject::activate_filters(QEvent*) () from /usr/lib/libqt-mt.so.3 #11 0x43790b7c in QObject::event(QEvent*) () from /usr/lib/libqt-mt.so.3 #12 0x437c803f in QWidget::event(QEvent*) () from /usr/lib/libqt-mt.so.3 #13 0x4373779f in QApplication::internalNotify(QObject*, QEvent*) () from /usr/lib/libqt-mt.so.3 #14 0x43736ea1 in QApplication::notify(QObject*, QEvent*) () from /usr/lib/libqt-mt.so.3 ---Type <return> to continue, or q <return> to quit--- #15 0x407d99ed in KApplication::notify(QObject*, QEvent*) () from /usr/lib/libkdecore.so.4 #16 0x436cf608 in QETWidget::translateMouseEvent(_XEvent const*) () from /usr/lib/libqt-mt.so.3 #17 0x436cd132 in QApplication::x11ProcessEvent(_XEvent*) () from /usr/lib/libqt-mt.so.3 #18 0x436e3221 in QEventLoop::processEvents(unsigned) () from /usr/lib/libqt-mt.so.3 #19 0x4374b008 in QEventLoop::enterLoop() () from /usr/lib/libqt-mt.so.3 #20 0x4374aeb8 in QEventLoop::exec() () from /usr/lib/libqt-mt.so.3 #21 0x437379f1 in QApplication::exec() () from /usr/lib/libqt-mt.so.3 #22 0x4005ac2c in kdemain () from /usr/lib/libkdeinit_konqueror.so #23 0x080485fb in ?? () #24 0x00000002 in ?? () #25 0xbffff734 in ?? () #26 0xbffff734 in ?? () #27 0x4102e79a in __libc_start_main () from /lib/tls/i686/cmov/libc.so.6 #28 0x4114f06c in ?? () from /lib/tls/i686/cmov/libc.so.6 (gdb) cont Continuing. KCrash: Application 'konqueror' crashing... Detaching after fork from child process 22205. Program exited with code 0375. (gdb) quit ---End output---- kernel: 2.6.4 libc6: 2.3.2.ds1-11 libkonq4: 4:3.2.1-1 konq-plugins: 4:3.2.1-1 kdelibs4: 4.3.2.1-1 libart-2.0-2: 2.3.16-3 libfam0c102: 2.7.0-5 libgcc1: 1:3.3.3-5 libice6: 4.3.0-7 libjpeg62: 6b-9 libpcre3: 4.5-1.1 libpng12-0: 1.2.5.0-5 libqt3c102-mt: 3:3.2.3-2 libsm6: 4.3.0-7 libstdc++5: 1:3.3.3-5 libx11-6: 4.3.0-7 libxext6: 4.3.0-7 libxrender1: 0.8.3-7 zlib1g: 1:1.2.1-5 kcontrol: 4:3.2.1-1 kdebase-kio-plugins: 4:3.2.1-1 kdesktop: 4:3.2.1-1 kfind: 4:3.2.1-1 -- Seneca [EMAIL PROTECTED] --------------------------------------- Received: (at 241291-done) by bugs.debian.org; 15 Apr 2004 14:26:15 +0000 >From [EMAIL PROTECTED] Thu Apr 15 07:26:14 2004 Return-path: <[EMAIL PROTECTED]> Received: from nibbel.kulnet.kuleuven.ac.be [134.58.240.41] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1BE7ok-00050p-00; Thu, 15 Apr 2004 07:26:14 -0700 Received: from localhost (localhost [127.0.0.1]) by nibbel.kulnet.kuleuven.ac.be (Postfix) with ESMTP id 1FB214C4A5 for <[EMAIL PROTECTED]>; Thu, 15 Apr 2004 16:25:42 +0200 (CEST) Received: from lepidus.kulnet.kuleuven.ac.be (lepidus.kulnet.kuleuven.ac.be [134.58.240.72]) by nibbel.kulnet.kuleuven.ac.be (Postfix) with ESMTP id 80E884C4A7 for <[EMAIL PROTECTED]>; Thu, 15 Apr 2004 16:25:41 +0200 (CEST) Received: from appel (domi.kotnet.org [10.0.57.168]) by lepidus.kulnet.kuleuven.ac.be (Postfix) with ESMTP id 5733E38018C for <[EMAIL PROTECTED]>; Thu, 15 Apr 2004 16:25:41 +0200 (CEST) Received: from domi by appel with local (Exim 3.36 #1 (Debian)) id 1BE7oY-000700-00 for <[EMAIL PROTECTED]>; Thu, 15 Apr 2004 16:26:02 +0200 To: [EMAIL PROTECTED] Subject: Fixed From: Dominique Devriese <[EMAIL PROTECTED]> Date: Thu, 15 Apr 2004 16:26:02 +0200 Message-ID: <[EMAIL PROTECTED]> User-Agent: Gnus/5.1006 (Gnus v5.10.6) XEmacs/21.4 (Security Through Obscurity, linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: Dominique Devriese <[EMAIL PROTECTED]> X-Virus-Scanned: by KULeuven Antivirus Cluster Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-2.0 required=4.0 tests=BAYES_00 autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: X-CrossAssassin-Score: 1 This bug appears to be fixed in KDE 3.2.2. thanks domi