Comment 7 for bug 679427

Revision history for this message
timetre (timetre) wrote :

Hi everyone,
I'm also facing the same crash of hugin since recently ... I've also contributed to the bug filed for the F12 package but after searching on the web, I've seen this bug being described on other platforms such as Debian or Ubuntu so I believe it's not platform specific ...

I've run hugin in gdb and it does segfautl on the
wxWindow::DoSetSize (this=0xfd6370, x=10, y=79, width=0, height=0, sizeFlags=4) at src/gtk/window.cpp:2763

line 2763 is
if (m_parent->m_wxwindow == NULL) // i.e. wxNotebook

I debugged step by step and the reason for the segfault is that the m_parent is null ...
(gdb) print m_parent
$2 = (wxWindow *) 0x0

So we have to figure out why this m_parent is null ... this DoSetSize method gets called hundreds of times successfully when hugin starts, so why is it crashing just that one time ...