https://issues.apache.org/bugzilla/show_bug.cgi?id=56170

--- Comment #1 from Yaniv Kunda <[email protected]> ---
I've found the problem in XSSFTable.updateHeaders() while fixing bug #56274,
and found that adding row validation solves it, i.e. changing
if (row != null)
to
if (row != null && row.getCTRow().validate())

I've not included a patch, since I'm not sure it's ok to count on validate() to
check this - can invalid rows still be appropriate for being a table header
row?
In addition, validate() might be too heavy - but I didn't find any other way of
identifying what's wrong.

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to