You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After closing the db pool, enter the background immediately. At this time, when performing releasingMemory, the sqliteConnection is already nil, which will cause a crash at sqlite3_db_release_memory
I could not reproduce the crash, but I could see an SQLite log message about misuse of sqlite3_db_release_memory with a NULL pointer. Maybe the actual behavior depends on the SQLite version. Please next time fill the issue template completely, and provide the requested information (system version, etc.).
After closing the db pool, enter the background immediately. At this time, when performing
releasingMemory
, thesqliteConnection
is already nil, which will cause a crash atsqlite3_db_release_memory
I think we need to check if it is nil.
The text was updated successfully, but these errors were encountered: