-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wxSQLite3CipherSQLCipher : InitializeFromGlobalDefault crash #113
Comments
You are welcome.
I can confirm that this call can crash. But only if the wxSQLite3 library was not initialized. The problem can be avoided, by calling the static method Nevertheless, thanks for reporting the issue. A crash should never happen, even if initialization hasn't been called. I will modify the underlying implementation in SQLite3 Multiple Ciphers. This may take a couple of days, but I will drop a note here, when the problem has been fixed.
This is not surprising, because the method of the base class simply does nothing. |
Sie haben absolut recht, vielen Dank dafür. |
- Update to SQLite3 Multiple Ciphers 1.7.4 (based on SQLite 3.44.0) - Prevent crashes due to uninitialized cipher tables (issue #113)
Release 4.9.7 fixes the problem. |
Vor allem möchte ich mich bei dir für deine Arbeit bedanken.
wxSQLite3CipherSQLCipher && wxSQLite3CipherRC4 && wxSQLite3CipherChaCha20 && wxSQLite3CipherAes256 && wxSQLite3CipherAes128 InitializeFromGlobalDefault crash.
That crash
wxSQLite3CipherAes256 *b = new wxSQLite3CipherAes256(); b->InitializeFromGlobalDefault();
That work
wxSQLite3Cipher *a = new wxSQLite3Cipher(); a->InitializeFromGlobalDefault()
The text was updated successfully, but these errors were encountered: