From 919fc66ea736f5c0842e6bf6c8096c2f14886fb9 Mon Sep 17 00:00:00 2001 From: drh Date: Mon, 16 Aug 2010 20:02:09 +0000 Subject: [PATCH] Remove an superfluous branch from pager.c. FossilOrigin-Name: 4271a95c8236bda4a4f8c02bf3a3560de1d00402 --- manifest | 24 +++++++++++++++++------- manifest.uuid | 2 +- src/pager.c | 5 ++--- 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/manifest b/manifest index 8e203d1aac..08525f8c8e 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,8 @@ -C Add\stests\sfor\sdifferent\spage\ssizes\sto\swal.test.\sIncluding\s64K\spages. -D 2010-08-16T19:23:02 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +C Remove\san\ssuperfluous\sbranch\sfrom\spager.c. +D 2010-08-16T20:02:10 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in ec08dc838fd8110fe24c92e5130bcd91cbb1ff2e F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -156,7 +159,7 @@ F src/os_common.h a8f95b81eca8a1ab8593d23e94f8a35f35d4078f F src/os_os2.c 72d0b2e562952a2464308c4ce5f7913ac10bef3e F src/os_unix.c 11194cbcf6a57456e58022dc537ab8c3497d9bb9 F src/os_win.c 51cb62f76262d961ea4249489383d714501315a7 -F src/pager.c 6d9ceacc880409d327e23c344d882604122ed401 +F src/pager.c 5a4fdd063b71f9cd9b5f561fd205941167efeb83 F src/pager.h ef8c8f71ab022cc2fff768a1175dd32355be9dcd F src/parse.y 12b7ebd61ea54f0e1b1083ff69cc2c8ce9353d58 F src/pcache.c 1e9aa2dbc0845b52e1b51cc39753b6d1e041cb07 @@ -843,7 +846,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f -P d4a26bb629bc739a4bca16b5a876199aa9ecda43 -R 1ccd99e93014e351a49a88a25e3c3422 -U dan -Z fbbe38304cb5ec697d8b7efa74c06093 +P d95bcc052910cfd4848afe0d32f717506ad5a789 +R 7f1ad401d5d30eb8789317264f68cef9 +U drh +Z b110b81e4bbc30011f2058afc954649c +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.6 (GNU/Linux) + +iD8DBQFMaZlGoxKgR168RlERArY4AJ4kGrynz7zzjVX9UDbRDl5/3v+PggCeJDeA +SaO0LUHGohOU+jh0oR4OoE4= +=VOx3 +-----END PGP SIGNATURE----- diff --git a/manifest.uuid b/manifest.uuid index 48038f9893..7dc6cc5cbb 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -d95bcc052910cfd4848afe0d32f717506ad5a789 \ No newline at end of file +4271a95c8236bda4a4f8c02bf3a3560de1d00402 \ No newline at end of file diff --git a/src/pager.c b/src/pager.c index 9935e23550..2137f0a9c2 100644 --- a/src/pager.c +++ b/src/pager.c @@ -6567,9 +6567,8 @@ int sqlite3PagerOpenWal( if( !pPager->tempFile && !pPager->pWal ){ if( !sqlite3PagerWalSupported(pPager) ) return SQLITE_CANTOPEN; - if( isOpen(pPager->jfd) ){ - sqlite3OsClose(pPager->jfd); - } + /* Close any rollback journal previously open */ + sqlite3OsClose(pPager->jfd); /* Open the connection to the log file. If this operation fails, ** (e.g. due to malloc() failure), unlock the database file and -- 2.47.2