Closed
Bug 345724
Opened 19 years ago
Closed 19 years ago
crash while editing emails [@ nsWindow::OnDragEnter]
Categories
(Core :: Widget: Gtk, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 297636
People
(Reporter: mozilla-bugs, Unassigned)
Details
(Keywords: crash)
Crash Data
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-GB; rv:1.8.0.4) Gecko/20060614 SeaMonkey/1.0.2
Build Identifier: Mozilla/5.0 (X11; U; Linux x86_64; en-GB; rv:1.8.0.4) Gecko/20060614 SeaMonkey/1.0.2
I have a self-built version of SeaMonkey/1.0.2 with no patches but with debugging symbols in to allow me to raise these issues I am intermittently having.
I have the coredump core.12232 of this to be able to assist hunting this bug.
Please advise if you want any specific information from the code dump or where I should be looking in it to find the problem.
(gdb) bt
#0 0x0000003eca20c22c in raise () from /lib64/libpthread.so.0
#1 0x00002aaaac651b5f in nsProfileLock::FatalSignalHandler (signo=11) at nsProfileLock.cpp:206
#2 <signal handler called>
#3 0x00000000000000c1 in ?? ()
#4 0x00002aaaac3d6494 in nsWindow::OnDragEnter (this=0x9a6780, aX=201, aY=1081) at nsWindow.cpp:2210
#5 0x00002aaaac3da6c0 in nsWindow::OnDragMotionEvent (this=0x9a6780, aWidget=0x942b60, aDragContext=0x4893100, aX=201, aY=1081, aTime=1887208028, aData=0x9a6780)
at nsWindow.cpp:1963
#6 0x00002aaaac3da8ce in nsWindow::FireDragMotionTimer (this=0x9a6780) at nsWindow.cpp:4134
#7 0x00002aaaac3da8ed in nsWindow::DragMotionTimerCallback (aClosure=0x9a6780) at nsWindow.cpp:4157
#8 0x0000003ecc0265ea in g_main_context_wakeup () from /usr/lib64/libglib-2.0.so.0
#9 0x0000003ecc024a9e in g_main_context_dispatch () from /usr/lib64/libglib-2.0.so.0
#10 0x0000003ecc027734 in g_main_context_check () from /usr/lib64/libglib-2.0.so.0
#11 0x0000003ecc027c20 in g_main_loop_run () from /usr/lib64/libglib-2.0.so.0
#12 0x0000003ece802145 in gtk_main () from /usr/lib64/libgtk-x11-2.0.so.0
#13 0x00002aaaac3e0476 in nsAppShell::Run (this=0x6df640) at nsAppShell.cpp:139
#14 0x00002aaaac109f64 in nsAppStartup::Run (this=0x6dd5b0) at nsAppStartup.cpp:207
#15 0x000000000040b630 in main1 (argc=1, argv=0x7ffffffe9318, nativeApp=0x5e1c40) at nsAppRunner.cpp:1249
#16 0x000000000040ba41 in main (argc=1, argv=0x7ffffffe9318) at nsAppRunner.cpp:1736
(gdb) frame 4
#4 0x00002aaaac3d6494 in nsWindow::OnDragEnter (this=0x9a6780, aX=201, aY=1081) at nsWindow.cpp:2210
2210 AddRef();
(gdb) list
2205 nsMouseEvent event(PR_TRUE, NS_DRAGDROP_ENTER, this, nsMouseEvent::eReal);
2206
2207 event.point.x = aX;
2208 event.point.y = aY;
2209
2210 AddRef();
2211
2212 nsEventStatus status;
2213 DispatchEvent(&event, status);
2214
(gdb) up
#5 0x00002aaaac3da6c0 in nsWindow::OnDragMotionEvent (this=0x9a6780, aWidget=0x942b60, aDragContext=0x4893100, aX=201, aY=1081, aTime=1887208028, aData=0x9a6780)
at nsWindow.cpp:1963
1963 innerMostWidget->OnDragEnter(retx, rety);
(gdb) list
1958 // if it wasn't this
1959 if (mLastDragMotionWindow != innerMostWidget) {
1960 // send a drag event to the last window that got a motion event
1961 mLastDragMotionWindow->OnDragLeave();
1962 // and enter on the new one
1963 innerMostWidget->OnDragEnter(retx, rety);
1964 }
1965 }
1966 else {
1967 // if there was no other motion window, then we're starting a
(gdb) up
#6 0x00002aaaac3da8ce in nsWindow::FireDragMotionTimer (this=0x9a6780) at nsWindow.cpp:4134
4134 this);
(gdb) list
4129 {
4130 LOG(("nsWindow::FireDragMotionTimer(%p)\n", this));
4131
4132 OnDragMotionEvent(mDragMotionWidget, mDragMotionContext,
4133 mDragMotionX, mDragMotionY, mDragMotionTime,
4134 this);
4135 }
4136
4137 void
4138 nsWindow::FireDragLeaveTimer(void)
Reproducible: Didn't try
Assignee: general → nobody
Component: General → Widget: Gtk
Product: Mozilla Application Suite → Core
QA Contact: general → gtk
Version: unspecified → 1.8 Branch
Severity: normal → critical
Keywords: crash
Summary: nsWindow::OnDragEnter crash while editing emails → [@ nsWindow::OnDragEnter] crash while editing emails
Reporter | ||
Comment 1•19 years ago
|
||
Just to add, I may not have been editing mails in this case, the core file is over 18 hours old and I could not be sure I was editing emails at the time. I think I may have just been web browsing at the time.
Comment 2•19 years ago
|
||
Thank you for posting the stack trace.
*** This bug has been marked as a duplicate of 297636 ***
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → DUPLICATE
Summary: [@ nsWindow::OnDragEnter] crash while editing emails → crash while editing emails [@ nsWindow::OnDragEnter]
Assignee | ||
Updated•14 years ago
|
Crash Signature: [@ nsWindow::OnDragEnter]
You need to log in
before you can comment on or make changes to this bug.
Description
•