Skip to content

Commit

Permalink
Fix issue #19
Browse files Browse the repository at this point in the history
  • Loading branch information
utelle committed Dec 7, 2020
1 parent 42ac1ff commit c87a453
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2020 Ulrich Telle <ulrich@telle-online.de>
dnl
dnl This file is covered by the same licence as the entire SQLite3 Multiple Ciphers package.

AC_INIT([sqlite3mc], [1.1.0], [ulrich@telle-online.de])
AC_INIT([sqlite3mc], [1.1.1], [ulrich@telle-online.de])

dnl This is the version tested with, might work with earlier ones.
AC_PREREQ([2.69])
Expand Down
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ The code was mainly developed under Windows, but was tested under Linux as well.

## Version history

* 1.1.1 - *December 2020*
- Fixed a bug on removing encryption from an encrypted database
* 1.1.0 - *December 2020*
- Based on SQLite version 3.34.0
- Added code for AES hardware support on x86 platforms
Expand Down
4 changes: 2 additions & 2 deletions src/sqlite3mc_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

#define SQLITE3MC_VERSION_MAJOR 1
#define SQLITE3MC_VERSION_MINOR 1
#define SQLITE3MC_VERSION_RELEASE 0
#define SQLITE3MC_VERSION_RELEASE 1
#define SQLITE3MC_VERSION_SUBRELEASE 0
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.1.0"
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.1.1"

#endif /* SQLITE3MC_VERSION_H_ */
5 changes: 4 additions & 1 deletion src/sqlite3mc_vfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,10 @@ SQLITE_PRIVATE void sqlite3mcSetCodec(sqlite3* db, const char* zFileName, Codec*
sqlite3mcCodecFree(pDbMain->codec);
}
pDbMain->codec = codec;
mcReportCodecError(sqlite3mcGetBtShared(codec), SQLITE_OK);
if (codec)
{
mcReportCodecError(sqlite3mcGetBtShared(codec), SQLITE_OK);
}
}
else
{
Expand Down

0 comments on commit c87a453

Please sign in to comment.