Summary: | hyphen file save dialog crash sigsegv signal 11 | ||
---|---|---|---|
Product: | [Unmaintained] kword | Reporter: | Daniel Enright <daniel> |
Component: | general | Assignee: | Thomas Zander <zander> |
Status: | RESOLVED DUPLICATE | ||
Severity: | crash | CC: | nicolasg |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Daniel Enright
2003-10-21 23:38:28 UTC
Subject: Re: New: hyphen file save dialog crash sigsegv signal 11
> #4 0x0f2eadd8 in QWidget::~QWidget() () from /usr/lib/libqt-mt.so.3
> #5 0x0f2eadb8 in QWidget::~QWidget() () from /usr/lib/libqt-mt.so.3
> #6 0x0f3c9fec in QScrollView::~QScrollView() () from /usr/lib/libqt-mt.so.3
> #7 0x0f388710 in QListBox::~QListBox() () from /usr/lib/libqt-mt.so.3
> #8 0x0fc29c80 in KCompletionBox::~KCompletionBox() ()
> from /usr/lib/libkdeui.so.4
> #9 0x0f2eaf4c in QWidget::~QWidget() () from /usr/lib/libqt-mt.so.3
> #10 0x0f37d4c0 in QLineEdit::~QLineEdit() () from /usr/lib/libqt-mt.so.3
> #11 0x0fb6ec68 in KLineEdit::~KLineEdit() () from /usr/lib/libkdeui.so.4
Duplicate of 66142.
To help the investigation: what's your Qt version?
Subject: Re: hyphen file save dialog crash sigsegv signal 11 On October 21, 2003 02:47 pm, you wrote: > http://bugs.kde.org/show_bug.cgi?id=66359 0fb6ec68 in KLineEdit::~KLineEdit() () from /usr/lib/libkdeui.so.4 > > Duplicate of 66142. > To help the investigation: what's your Qt version? version 3.2.1-6 from the debian package libqt3c102-mt Ooh, no, not somewhere else too! (see bug #66142.) (You are using KDE 3.1.x, aren't you?) But if it is only for a hyphen, that is a very interesting information. So I am mark this bug as duplicate, as it is the same as #66142, just under another light. Have a nice day! *** This bug has been marked as a duplicate of 66142 *** Subject: Re: KCompletionBox Am Montag, 27. Oktober 2003 14:46 schrieb Nicolas Goutte: > New information from bug 66359: > it seems that hyphens '-' are the problem. > > The modified filter entries have hyphens too: > "%1 (KOffice-1.1 Format)" I investigated the bug on Sunday, but couldn't find a fix yet, unfortunately. I think I found the cause why it doesn't crash in HEAD anymore tho. Earlier, KFD had its own completion stuff and it had a line (void) locationEdit->completionBox(); to create the completion box immediately and not on demand. In HEAD, it doesn't do that anymore. As soon as you add that line after locationEdit = new KURLComboBox(...), you get the crash with HEAD, too -- independent of the filename. It crashes in QWidget::~QWidget() when accessing an already deleted widget (qt_vbar) from the focusData list. Cheers Carsten |