We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 814f666 commit 1f9d3b8Copy full SHA for 1f9d3b8
1 file changed
src/OpenStreetMap-esp32.cpp
@@ -39,14 +39,19 @@ OpenStreetMap::~OpenStreetMap()
39
for (int i = 0; i < numCores; ++i)
40
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
41
42
+ tasksStarted = false;
43
+
44
vQueueDelete(jobQueue);
45
jobQueue = nullptr;
46
}
47
48
freeTilesCache();
49
50
if (cacheMutex)
51
+ {
52
vSemaphoreDelete(cacheMutex);
53
+ cacheMutex = nullptr;
54
+ }
55
56
if (pngCore0)
57
{
0 commit comments