Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-04-27 20:34:44 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:04:18 +0300
commit100b6631b9f268b8e2b8a7f292588285e26ca370 (patch)
tree39585e396e2985fd14756c9c9ed14bb925a34698 /drape_frontend/engine_context.hpp
parent3b030fcf019b3facfa0cbe03b3f9185d3103362a (diff)
Fixed crash in EngineContext caused by thread-safety
Diffstat (limited to 'drape_frontend/engine_context.hpp')
-rw-r--r--drape_frontend/engine_context.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/drape_frontend/engine_context.hpp b/drape_frontend/engine_context.hpp
index a16f20a8cb..eda0fd6c76 100644
--- a/drape_frontend/engine_context.hpp
+++ b/drape_frontend/engine_context.hpp
@@ -31,6 +31,8 @@ private:
private:
TileKey m_tileKey;
ref_ptr<ThreadsCommutator> m_commutator;
+
+ mutex m_mutex;
list<drape_ptr<MapShape>> m_mapShapes;
};