https://bugs.documentfoundation.org/show_bug.cgi?id=164285

--- Comment #7 from Armin Le Grand (allotropia) <[email protected]> ---
Ah! Interesting: see svx/source/svdraw/svdedtv1.cxx:1667

    if (bChgSiz) {
        if (bTiledRendering && SfxItemState::SET !=
rAttr.GetItemState(SID_ATTR_TRANSFORM_SIZE_POINT))
            eSizePoint = RectPoint::LT;
        else
            eSizePoint =
static_cast<RectPoint>(rAttr.Get(SID_ATTR_TRANSFORM_SIZE_POINT).GetValue());
    }

So before accessing the Item it *gets* checked if it is set - but *not* when
bTiledRendering ios false - which is the case here. Thus the Item gets accessed
*without* being set -> crash. This is clearly wrong I would say...

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

Reply via email to