[Libreoffice-bugs] [Bug 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

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

Telesto  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #11 from Telesto  ---
No repro 
Version: 6.2.0.0.alpha0+
Build ID: e7d3976cb80f7e7401be071f905a764dd6cb4d6e
CPU threads: 4; OS: Windows 6.3; UI render: GL; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-06-29_04:46:32
Locale: nl-NL (nl_NL); Calc: CL

*** This bug has been marked as a duplicate of bug 113377 ***

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

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

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #10 from Miklos Vajna  ---
Does this still happen? Asking as possible this is a duplicate of bug 113377
and/or bug 117866.

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2018-02-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

sophie  changed:

   What|Removed |Added

   Keywords||needUITest
 CC||gautier.sop...@gmail.com

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

Alex Thurgood  changed:

   What|Removed |Added

 CC||woodrack...@yahoo.com

--- Comment #9 from Alex Thurgood  ---
*** Bug 114156 has been marked as a duplicate of this bug. ***

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

Telesto  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||4156

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

--- Comment #8 from Miklos Vajna  ---
See 0d860007d692f9fb15b5699b49c314eb72eae79b for an example on how to load a
JPEG file safely on a thread. The bitmap creation is not thread-safe, so that
has to be created on a main thread, the pixel-reading part can run on a thread.
And also you need to make sure this is a JPEG file, other image filters don't
have this separation between creating the bitmap and reading pixel data.

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

--- Comment #7 from Michael Meeks  ---
Created attachment 133562
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133562=edit
protect VCL usage ...

Sample patch, un-tested / compiled - might help etc. =) Of course, taking the
SolarMutex rather defeats the purpose of threading this in the 1st instance ;-)
Quite possibly we want to download the file in the thread and outside the
SolarMutexGuard - and save it locally, before importing the image with a local
file (might be worth a try) ...

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

--- Comment #6 from Michael Meeks  ---
Wow this is bad:

#18 0x2aaab466c8a7 in Button::SetModeImage (this=0x5bfea100,
rImage=...) at /home/julien/lo/libreoffice/vcl/source/control/button.cxx:178
#19 0x2aaaf99fd828 in SelectPersonaDialog::ClearSearchResults
(this=0x5ba85680) at
/home/julien/lo/libreoffice/cui/source/options/personalization.cxx:261
#20 0x2aaaf9a00707 in SearchAndParseThread::execute (this=0x5bf45410)
at /home/julien/lo/libreoffice/cui/source/options/personalization.cxx:680
#21 0x2f506ed8 in salhelper::Thread::run (this=0x5bf45410) at
/home/julien/lo/libreoffice/salhelper/source/thread.cxx:40

We should never call random VCL methods like Button::SetModeImage from a thread
without first taking the Solar Mutex - that is what is caught here ...

Quite probably we should add more of these checks to random Window:: methods to
ensure that the correct thread is running =)

I imagine this is the root 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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

Xisco Faulí  changed:

   What|Removed |Added

   Priority|medium  |high
 CC||xiscofa...@libreoffice.org
Version|5.3.0.1 rc  |4.4.0.3 release

--- Comment #5 from Xisco Faulí  ---
Reproduced in

Version: 5.4.0.0.alpha1+
Build ID: 970b431f1a7b6b96c4c9536657ce4fe9d8f5b585
CPU threads: 1; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2017-05-11_23:07:53
Locale: es-ES (es_ES); Calc: group

Steps:
1. Go to Tools -> Options -> LibreOfficeDev -> Personalization -> Select Theme
2. Select any category
3. Hold the Enter key

eventually LibreOffice crashes

Also reproduced in

Versión: 4.4.0.3
Id. de compilación: de093506bcdc5fafd9023ee680b8c60e3e0645d7
Configuración regional: es_ES

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-02-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

Markus Mohrhard  changed:

   What|Removed |Added

Crash report or|OutputDevice::InitLineColor |["OutputDevice::InitLineCol
crash signature|()  |or()"]

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

Telesto  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||837

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||michael.me...@collabora.com
 Ever confirmed|0   |1

--- Comment #4 from Julien Nabet  ---
Michael: considering the bug, does it correspond to the known scheduler pb or
should I submit a specific bug?
BTW, still now news about it?

Anyway, let's put this one to NEW.

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

On pc Debian x86-64 with master sources updated today + enable-dbgutil, I got a
crash too but with a different bt.

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

--- Comment #2 from Telesto  ---
I did retry it a few times. I get all sorts of crashes reports doing nearly the
same. For example:

1.
crashreport.libreoffice.org/stats/crash_details/040c7afa-316d-4d58-8ebb-eb7fb678308a
(OutputDevice::ImplLayout(rtl::OUString const &,long,long,Point const
&,long,long const *,SalLayoutFlags,vcl::TextLayoutCache const *) 

2.
crashreport.libreoffice.org/stats/crash_details/a975bb65-123e-471c-a06a-c16373967177
(vcl::Window::dispose()

-- 
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 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

Telesto  changed:

   What|Removed |Added

Crash report or||OutputDevice::InitLineColor
crash signature||()

--- Comment #1 from Telesto  ---
Crash report:
crashreport.libreoffice.org/stats/crash_details/76b7bf67-f7cc-4f79-8380-6ba5d20be418

-- 
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