aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordan <Dan Kennedy>2023-03-03 10:42:23 +0000
committerdan <Dan Kennedy>2023-03-03 10:42:23 +0000
commit0b23765b6f23368a5664d879f1d65ee4631c6ce5 (patch)
treecc23d25b78deed27ecd8102f21963282c2fc8fb8 /src
parent3f23ce664e84366c3e7c7fcf675c480e2d3988af (diff)
downloadsqlite-0b23765b6f23368a5664d879f1d65ee4631c6ce5.tar.gz
sqlite-0b23765b6f23368a5664d879f1d65ee4631c6ce5.zip
Remove unnecessary call to sqlite3_dbdata_init() from shell.c.in.
FossilOrigin-Name: c4d083a3aeeee69342d41b93a1393855871b0e4e7bfdb5fcc2973138018f248b
Diffstat (limited to 'src')
-rw-r--r--src/shell.c.in3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/shell.c.in b/src/shell.c.in
index 0a54a3c5a..c2da3dbb3 100644
--- a/src/shell.c.in
+++ b/src/shell.c.in
@@ -5325,9 +5325,6 @@ static void open_db(ShellState *p, int openFlags){
sqlite3_fileio_init(p->db, 0, 0);
sqlite3_completion_init(p->db, 0, 0);
#endif
-#if SQLITE_SHELL_HAVE_RECOVER
- sqlite3_dbdata_init(p->db, 0, 0);
-#endif
#ifdef SQLITE_HAVE_ZLIB
if( !p->bSafeModePersist ){
sqlite3_zipfile_init(p->db, 0, 0);