On Wed, Mar 26, 2008 at 10:03 AM, Dominik Böhm <[EMAIL PROTECTED]> wrote: > create new file, > insert table of arbitrary size, > View=>Source Code OR View PDF OR View DVI > > And LyX should have crashed!
LyX crashes in InsetTabular.cpp, method Tabular::cellIndex in line 1583 when trying to execute return cell_info[row][column].cellno; Actually this happens as the array cell_info isn't big enough for row/column: LyX tries to get the cell_info for row 4294967295 and column 0. Usually there should occure an assertion but assertions are switched off because of the upcoming alpha build. I don't have a debugger, so I cannot look into it to find out why the row parameter is that large. Dominik