Skip to content
Snippets Groups Projects
Commit 4d15d631 authored by Kahrl's avatar Kahrl
Browse files

Fix uninitialized variable m_database_delete in Database_SQLite3

This fixes issue #2219
parent a8ec7876
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,7 @@ Database_SQLite3::Database_SQLite3(ServerMap *map, std::string savedir)
m_database_read = NULL;
m_database_write = NULL;
m_database_list = NULL;
m_database_delete = NULL;
m_savedir = savedir;
srvmap = map;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment