diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-07-23 23:06:58 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-07-24 02:04:39 +0200 |
commit | 2480abb1819188263a72b6d37e7511486f354b0b (patch) | |
tree | 1ff973f7b6104dcd492eb8786786f00a4d86e078 /chart2/source | |
parent | 057613c6864204ac5c09260e93a8f14cc9768b90 (diff) |
taking the mutex before calling update is a deadlock as well
The mutex is unnecessary as update is calling join in the beginning
anyway.
Change-Id: I1dc0c415f4405b58ddbe3640fa8870bed9fefef3
Diffstat (limited to 'chart2/source')
-rw-r--r-- | chart2/source/view/charttypes/GL3DBarChart.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chart2/source/view/charttypes/GL3DBarChart.cxx b/chart2/source/view/charttypes/GL3DBarChart.cxx index 7d3ffd543fec..4809a2f0efd3 100644 --- a/chart2/source/view/charttypes/GL3DBarChart.cxx +++ b/chart2/source/view/charttypes/GL3DBarChart.cxx @@ -606,7 +606,6 @@ void GL3DBarChart::render() if (BENCH_MARK_MODE) return; - osl::MutexGuard aGuard(maMutex); update(); } |