Was just having a look at the valgrind errors, and I think the main one is in textblock.cc: int leftBorder = boxOffsetX () + leftInnerPadding + (lines->size () == 0 ? line1OffsetEff : 0); leftBorder being set to line1OffsetEff when line1OffsetEff has not been initialized.
Another one is containerAllocationState not getting initialized in OOFPositionedMgr.
I wrote:
Was just having a look at the valgrind errors, and I think the main one is in textblock.cc:
int leftBorder = boxOffsetX () + leftInnerPadding + (lines->size () == 0 ? line1OffsetEff : 0);
leftBorder being set to line1OffsetEff when line1OffsetEff has not been initialized.
I should have said 'making use of the value of line1OffsetEff'. I wasn't paying any attention to the specifics of the calculation because textblock has changed a lot since I worked on it...
On Mi, Jun 22, 2016, eocene wrote:
Was just having a look at the valgrind errors, and I think the main one is in textblock.cc:
int leftBorder = boxOffsetX () + leftInnerPadding + (lines->size () == 0 ? line1OffsetEff : 0);
leftBorder being set to line1OffsetEff when line1OffsetEff has not been initialized.
Fixed. (With one open issue which has been an open issue for a long time.) Sebastian
participants (2)
-
eocene@gmx.com
-
sgeerken@dillo.org