https://bugs.documentfoundation.org/show_bug.cgi?id=154979
Julien Nabet <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 CC| |[email protected], | |[email protected] Status|UNCONFIRMED |NEW --- Comment #1 from Julien Nabet <[email protected]> --- On pc Debian x86-64 with master sources updated today, I could reproduce this. Miklos: perhaps a code pointer: #0 MergeItem_Impl(SfxItemPool*, unsigned short&, SfxPoolItem const**, SfxPoolItem const*, bool) (_pPool=0x557f10959fd0, rCount=@0x557f15d1f6d0: 132, ppFnd1=0x557f15dda5f8, pFnd2=0x557f109ab250, bIgnoreDefaults=true) at svl/source/items/itemset.cxx:1095 #1 0x00007fcbdfa6f52b in SfxItemSet::MergeValue(SfxPoolItem const&, bool) (this=0x557f15d1f6a0, rAttr=..., bIgnoreDefaults=true) at svl/source/items/itemset.cxx:1153 #2 0x00007fcbdea6cc66 in sdr::table::SvxTableController::MergeAttrFromSelectedCells(SfxItemSet&, bool) const (this=0x557f11ad16d0, rAttr=SfxItemSet of pool 0x557f10959fd0 with parent 0x0 and Which ranges: [(1000, 1012), (1014, 1035), (1048, 1058), (1069, 1095), (1167, 1176), (1236, 1241), (1242, 1244), (1245, 1245), (4008, 4027), (4028, 4060)] = {...}, bOnlyHardAttr=false) at svx/source/table/tablecontroller.cxx:2436 #3 0x00007fcbdea78e54 in sdr::table::SvxTableController::GetAttributes(SfxItemSet&, bool) const (this=0x557f11ad16d0, rTargetSet=SfxItemSet of pool 0x557f10959fd0 with parent 0x0 and Which ranges: [(1000, 1012), (1014, 1035), (1048, 1058), (1069, 1095), (1167, 1176), (1236, 1241), (1242, 1244), (1245, 1245), (4008, 4027), (4028, 4060)] = {...}, bOnlyHardAttr=false) at svx/source/table/tablecontroller.cxx:2777 #4 0x00007fcbde798a18 in SdrObjEditView::TakeFormatPaintBrush(std::shared_ptr<SfxItemSet>&) (this=0x557f10c10d60, rFormatSet=warning: RTTI symbol not found for class 'std::_Sp_counted_ptr_inplace<SfxItemSet, std::allocator<void>, (__gnu_cxx::_Lock_policy)2>' warning: RTTI symbol not found for class 'std::_Sp_counted_ptr_inplace<SfxItemSet, std::allocator<void>, (__gnu_cxx::_Lock_policy)2>' std::shared_ptr<SfxItemSet> (use count 1, weak count 0) = {...}) at svx/source/svdraw/svdedxv.cxx:2834 #5 0x00007fcbb9c9d654 in sd::FuFormatPaintBrush::DoExecute(SfxRequest&) (this=0x557f16056720, rReq=...) at sd/source/ui/func/fuformatpaintbrush.cxx:67 #6 0x00007fcbb9c9d538 in sd::FuFormatPaintBrush::Create(sd::ViewShell*, sd::Window*, sd::View*, SdDrawDocument*, SfxRequest&) (pViewSh=0x557f105b9b40, pWin=0x557f102fe940, pView=0x557f10c10d60, pDoc=0x557f1095abd0, rReq=...) at sd/source/ui/func/fuformatpaintbrush.cxx:53 #7 0x00007fcbba117ff5 in sd::DrawViewShell::FuPermanent(SfxRequest&) (this=0x557f105b9b40, rReq=...) at sd/source/ui/view/drviewse.cxx:548 With this patch, I don't reproduce the pb: diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx index 655956f2d1cc..7ea59f569590 100644 --- a/svl/source/items/itemset.cxx +++ b/svl/source/items/itemset.cxx @@ -1092,9 +1092,7 @@ static void MergeItem_Impl( SfxItemPool *_pPool, sal_uInt16 &rCount, // 2nd Item is set if ( **ppFnd1 != *pFnd2 ) { - // Decision table: set, set, !=, doesn't matter - _pPool->Remove( **ppFnd1 ); - *ppFnd1 = INVALID_POOL_ITEM; + *ppFnd1 = &_pPool->Put( *pFnd2 ); } } } but there are several elements which are impacted, not only 1236 (SDRATTR_TABLE_BORDER) Any thoughts here? -- You are receiving this mail because: You are the assignee for the bug.
