mapbox / mapbox-events-ios

Mapbox Events Framework for iOS
Other
20 stars 38 forks source link

Make locationManager initialization thread safe #317

Closed S2Ler closed 2 years ago

S2Ler commented 2 years ago

Fixes #316

There are three data-races found during running sendTurnstileEvent multiple times:

All these classes modify shared state which is accessed from multiple Dispatch Queue threads due to how sendTurnstileEvent is implemented.

Alternative solution can be running sendTurnstileEvent only one at a time.