explanitory comment on memory wiping

This commit is contained in:
Stephen Lombardo 2018-08-28 15:47:18 -04:00
parent c7b561fab7
commit 1bc379ff31

View File

@ -131,6 +131,9 @@ int sqlite3MallocInit(void){
sqlite3MemSetDefault();
/* BEGIN SQLCIPHER */
#ifdef SQLITE_HAS_CODEC
/* install wrapping functions for memory management
that will wipe all memory allocated by SQLite
when freed */
extern void sqlcipher_init_memmethods();
sqlcipher_init_memmethods();
#endif