From 7e674159f92ef7410afc8e6f67c88dfaf1bc22fe Mon Sep 17 00:00:00 2001 From: Darren Duncan Date: Thu, 7 Jul 2011 04:44:42 +0000 Subject: [PATCH] updated bundled SQLite to 3.7.7.1 --- Changes | 2 +- sqlite3.c | 7 ++++--- sqlite3.h | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Changes b/Changes index 61d11a2..832484c 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,7 @@ Changes for Perl extension DBD-SQLite 1.34_01 to be released - - Updated to SQLite 3.7.7 (ISHIGAKI) + - Updated to SQLite 3.7.7.1 (DUNCAND) - Made util/getsqlite.pl work properly for SQLite 3.7.5+ (ISHIGAKI) 1.33 Mon 20 May 2011 diff --git a/sqlite3.c b/sqlite3.c index c7db506..2c426c2 100644 --- a/sqlite3.c +++ b/sqlite3.c @@ -1,6 +1,6 @@ /****************************************************************************** ** This file is an amalgamation of many separate C source files from SQLite -** version 3.7.7. By combining all the individual C code files into this +** version 3.7.7.1. By combining all the individual C code files into this ** single large file, the entire code can be compiled as a single translation ** unit. This allows many compilers to do optimizations that would not be ** possible if the files were compiled separately. Performance improvements @@ -650,9 +650,9 @@ extern "C" { ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ -#define SQLITE_VERSION "3.7.7" +#define SQLITE_VERSION "3.7.7.1" #define SQLITE_VERSION_NUMBER 3007007 -#define SQLITE_SOURCE_ID "2011-06-23 19:49:22 4374b7e83ea0a3fbc3691f9c0c936272862f32f2" +#define SQLITE_SOURCE_ID "2011-06-28 17:39:05 af0d91adf497f5f36ec3813f04235a6e195a605f" /* ** CAPI3REF: Run-Time Library Version Numbers @@ -59049,6 +59049,7 @@ SQLITE_PRIVATE void sqlite3VdbeMakeReady( memset(zCsr, 0, zEnd-zCsr); zCsr += (zCsr - (u8*)0)&7; assert( EIGHT_BYTE_ALIGNMENT(zCsr) ); + p->expired = 0; /* Memory for registers, parameters, cursor, etc, is allocated in two ** passes. On the first pass, we try to reuse unused space at the diff --git a/sqlite3.h b/sqlite3.h index 14e37a7..ed9edbd 100644 --- a/sqlite3.h +++ b/sqlite3.h @@ -107,9 +107,9 @@ extern "C" { ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ -#define SQLITE_VERSION "3.7.7" +#define SQLITE_VERSION "3.7.7.1" #define SQLITE_VERSION_NUMBER 3007007 -#define SQLITE_SOURCE_ID "2011-06-23 19:49:22 4374b7e83ea0a3fbc3691f9c0c936272862f32f2" +#define SQLITE_SOURCE_ID "2011-06-28 17:39:05 af0d91adf497f5f36ec3813f04235a6e195a605f" /* ** CAPI3REF: Run-Time Library Version Numbers