From: drh Date: Sat, 24 Nov 2007 10:23:44 +0000 (+0000) Subject: Declare the invalidateCursorsOnModifiedBtrees function to be static. X-Git-Tag: version-3.6.10~1618 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ade6c9c513b294f0dafd421d09cc41c2b73f7c7b;p=thirdparty%2Fsqlite.git Declare the invalidateCursorsOnModifiedBtrees function to be static. Ticket #2792. (CVS 4559) FossilOrigin-Name: 94f25fc1129c7fb8697a67e509ab9de54a173a58 --- diff --git a/manifest b/manifest index 7e69d6041e..8ec70fa916 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C The\sFTS3\samalgamation\scan\snow\sbe\sappended\sto\sthe\sSQLite\samalgamation\sto\ngenerate\sa\ssingle\ssource\sfile\sthat\scontains\sboth\scomponents.\s(CVS\s4558) -D 2007-11-24T00:41:52 +C Declare\sthe\sinvalidateCursorsOnModifiedBtrees\sfunction\sto\sbe\sstatic.\nTicket\s#2792.\s(CVS\s4559) +D 2007-11-24T10:23:45 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7 F Makefile.in 35396fd58890420b29edcf27b6c0e2d054862a6b F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -170,7 +170,7 @@ F src/vdbe.c 791d056da2c264c2cfed6e2150852926845875e5 F src/vdbe.h 79e09ff13b85457abe437d9814454534ebbc1fe3 F src/vdbeInt.h 630145b9bfaa19190ab491f52658a7db550f2247 F src/vdbeapi.c dd2c43317294e0a013e9f634ee4209a3ea459b43 -F src/vdbeaux.c ffc2610c0d29a6e7b5c1d5dfea2ad406f7f9aff1 +F src/vdbeaux.c ecda6d92276c61aa9d8d4466444a980b7163827b F src/vdbeblob.c 82f51cdf9b0c0af729732fde48c824e498c0a1ca F src/vdbefifo.c 334c838c8f42d61a94813d136019ee566b5dc2f6 F src/vdbemem.c 123994fcd344993d2fb050a83b91b341bbbd08b4 @@ -590,7 +590,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5 -P 8c0b2157f2a2f8ecfa641a041279faf21aedd4e0 -R cdfb152187a9296f913494eaf2c01ee9 +P 0fc61f99b54bd269fcc011f448b9b971e902cb01 +R a314c7a29cbfffced0c652613fe340e1 U drh -Z eba6c82b1c5d7dceb4b3e7cae88033fd +Z ef78acb28db3ec4e15d6c19b7209bfc1 diff --git a/manifest.uuid b/manifest.uuid index 0bf1c4e0ed..475fd0f03c 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -0fc61f99b54bd269fcc011f448b9b971e902cb01 \ No newline at end of file +94f25fc1129c7fb8697a67e509ab9de54a173a58 \ No newline at end of file diff --git a/src/vdbeaux.c b/src/vdbeaux.c index a0a787415d..080e8c2ef2 100644 --- a/src/vdbeaux.c +++ b/src/vdbeaux.c @@ -1323,7 +1323,7 @@ static void checkActiveVdbeCnt(sqlite3 *db){ ** the state of the cursor. We have to invalidate the cursor ** so that it is never used again. */ -void invalidateCursorsOnModifiedBtrees(sqlite3 *db){ +static void invalidateCursorsOnModifiedBtrees(sqlite3 *db){ int i; for(i=0; inDb; i++){ Btree *p = db->aDb[i].pBt;