diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2017-10-20 15:18:30 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2017-11-03 10:28:47 +0000 |
commit | 33f6c464115343789df7ec167ef427f33ef3c8fc (patch) | |
tree | 42463a16acb5ece02f82218b4339012f5e91e87d | |
parent | 7090a2020d4d850de698bf2cc4e2679a0797cfdf (diff) |
tdf#113225 - hold the solar mutex when entering from UNO.
libreoffice-5.2.4.2-update-2
http://crashreport.libreoffice.org/stats/crash_details/dff57662-1693-47f6-8b09-88f180d2e706
Change-Id: I4322c2113c300af97fb5854aac4a741b7027e6b1
Reviewed-on: https://gerrit.libreoffice.org/43623
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index 336fbf2ef451..e8cdba6e4bb4 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -945,6 +945,7 @@ void BubbleWindow::RecalcTextRects() static uno::Reference<uno::XInterface> SAL_CALL createInstance(const uno::Reference<uno::XComponentContext>& xContext) { + SolarMutexGuard aGuard; return *new UpdateCheckUI(xContext); } |