[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

--- Comment #7 from Julien Nabet  ---
Created attachment 147390
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147390=edit
bt with debug symbols

The previous bt seems unrelated.
This one with
#1  0x7fffec0af4ae in connectivity::checkDisposed(bool) (_bThrow=true) at
/home/julien/lo/libreoffice/connectivity/source/commontools/dbtools.cxx:1941
#2  0x7fffb114af30 in dbaccess::ORowSetBase::checkCache()
(this=0x5cb333a0) at
/home/julien/lo/libreoffice/dbaccess/source/core/api/RowSetBase.cxx:1281
#3  0x7fffb1148110 in dbaccess::ORowSetBase::getRow() (this=0x5cb333a0)
at /home/julien/lo/libreoffice/dbaccess/source/core/api/RowSetBase.cxx:843
#4  0x7fffde3fea42 in SwDBManager::MergeMailFiles(SwWrtShell*,
SwMergeDescriptor const&) (this=0x5a9feb80, pSourceShell=0x5cc4abe0,
rMergeDescriptor=...)
at /home/julien/lo/libreoffice/sw/source/uibase/dbui/dbmgr.cxx:1584

seems more relevant.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

--- Comment #6 from Julien Nabet  ---
Created attachment 147387
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147387=edit
bt from "catch throw"

Here's the bt.
I noticed sItem="AportisDoc Palm DB" ("Palm" in 2018!!)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords||haveBacktrace

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

--- Comment #5 from Julien Nabet  ---
Created attachment 147386
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147386=edit
gdb bt

On pc Debian x86-64 with master sources updated today, I could reproduce this.

bt isn't very interesting here but I also included logs which show some
interesting exceptions.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

--- Comment #4 from Lionel Elie Mamane  ---
Would someone have a backtrace of the crash?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

Julien Nabet  changed:

   What|Removed |Added

 CC||lio...@mamane.lu

--- Comment #3 from Julien Nabet  ---
Lionel: thought you might be interested in this one.
Indeed, himajin10 proposed some changes concerning dbaccess part.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

--- Comment #2 from himajin100...@gmail.com ---
Similar problem is reported on Japanese ask.libreoffice.org

https://ask.libreoffice.org/ja/question/171031/libreoffice-writer-6062-detabesunojiao-huan-huairunozhong-lei/

Though I did not know enough about the cause, only as a tentative patch , I
applied the following modification on my environment as given in the
forementioned forum, and now I see no errors.

1. comment-out the following three lines in void
SbaTableQueryBrowser::unloadAndCleanup( bool _bDisposeConnection )

Reference< XLoadable > xLoadable = getLoadable();
if (xLoadable->isLoaded())
 xLoadable->unload();

2. explicitly specify false as the parameter of unloadAndCleanup, and avoid
relying on default parameter true
https://opengrok.libreoffice.org/xref/core/dbaccess/source/ui/browser/unodatbr.cxx?r=6311f7ff#3708

so that disposeConnection is not executed.
https://opengrok.libreoffice.org/xref/core/dbaccess/source/ui/browser/unodatbr.cxx?r=6311f7ff#2982

3. comment out the following three lines

https://opengrok.libreoffice.org/xref/core/dbaccess/source/ui/browser/unodatbr.cxx?r=6311f7ff#3731

DBTreeListUserData* pData = static_cast< DBTreeListUserData* >(
pDataSourceEntry->GetUserData() );
pDataSourceEntry->SetUserData( nullptr );
delete pData;

by doing all these three, LibreOffice stopped running
FPreaparedStatement::close

I'm not going to submit the patch myself for the inadequate understanding. I
would be happy if someone helps me.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||102998


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102998
[Bug 102998] [META] Mail merge bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121951] Fatal error with mailmerge

2018-12-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121951

Julien Nabet  changed:

   What|Removed |Added

Summary|Fatal error sur |Fatal error with mailmerge
   |publipostage|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs