We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1828d37 commit dc0eec4Copy full SHA for dc0eec4
CHANGELOG.md
@@ -1,4 +1,8 @@
1
2
+
3
+22.09.0
4
+* Fixed a bug where 'mutex' was being locked twice when built with the 'COUNTLY_USE_SQLITE' flag.
5
6
22.06.3
7
* Fixed a bug where empty metrics were sent with session begin request.
8
src/countly.cpp
@@ -438,7 +438,6 @@ void Countly::flushEvents(std::chrono::seconds timeout) {
438
char *error_message;
439
440
update_failed = true;
441
- mutex->lock();
442
return_value = sqlite3_open(database_path.c_str(), &database);
443
mutex->unlock();
444
if (return_value == SQLITE_OK) {
0 commit comments