valgrind complains about this fragment in fv_View.cpp (around line 5785)
fp_Run* pRun = pBlock->findPointCoords(pos, m_bPointEOL, xPoint, yPoint,
xPoint2, yPoint2, iPointHeight, bDirection);
//
// Detect if we have no Lines at the curren tpoint and bail out.
//
if(iPointHeight == 0)
{
return NULL;
}
because iPointHeight isn't necessarily initialized by findPointCoords.
I don't actually know what you are trying to do here, but this isn't it.
pat
