Turn off autoinit

This commit is contained in:
Maas-Maarten Zeeman
2022-01-12 23:19:09 +01:00
parent 7c91e4a2e8
commit 9762942859
2 changed files with 4 additions and 1 deletions

View File

@@ -1712,6 +1712,9 @@ on_load(ErlNifEnv* env, void** priv, ERL_NIF_TERM info)
atom_esqlite3 = make_atom(env, "esqlite3");
if(SQLITE_OK != sqlite3_initialize())
return -1;
return 0;
}