Fix some non-ANSI C code in test_demovfs.c. Also change the same file so that attempting to delete a file that does not exist does not return an error.
FossilOrigin-Name: 07570ce38051a05d6e8a71e39766850f6719ac07
This commit is contained in:
parent
919fc66ea7
commit
fc6a621a96
24
manifest
24
manifest
@ -1,8 +1,5 @@
|
|||||||
-----BEGIN PGP SIGNED MESSAGE-----
|
C Fix\ssome\snon-ANSI\sC\scode\sin\stest_demovfs.c.\sAlso\schange\sthe\ssame\sfile\sso\sthat\sattempting\sto\sdelete\sa\sfile\sthat\sdoes\snot\sexist\sdoes\snot\sreturn\san\serror.
|
||||||
Hash: SHA1
|
D 2010-08-17T05:55:36
|
||||||
|
|
||||||
C Remove\san\ssuperfluous\sbranch\sfrom\spager.c.
|
|
||||||
D 2010-08-16T20:02:10
|
|
||||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||||
F Makefile.in ec08dc838fd8110fe24c92e5130bcd91cbb1ff2e
|
F Makefile.in ec08dc838fd8110fe24c92e5130bcd91cbb1ff2e
|
||||||
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
||||||
@ -194,7 +191,7 @@ F src/test_autoext.c 30e7bd98ab6d70a62bb9ba572e4c7df347fe645e
|
|||||||
F src/test_backup.c c129c91127e9b46e335715ae2e75756e25ba27de
|
F src/test_backup.c c129c91127e9b46e335715ae2e75756e25ba27de
|
||||||
F src/test_btree.c 47cd771250f09cdc6e12dda5bc71bc0b3abc96e2
|
F src/test_btree.c 47cd771250f09cdc6e12dda5bc71bc0b3abc96e2
|
||||||
F src/test_config.c 5a11c51af2156e2d07186930b36f2b8239a4393f
|
F src/test_config.c 5a11c51af2156e2d07186930b36f2b8239a4393f
|
||||||
F src/test_demovfs.c da81a5f7785bb352bda7911c332a983ec4f17f27
|
F src/test_demovfs.c 0aed671636735116fc872c5b03706fd5612488b5
|
||||||
F src/test_devsym.c e7498904e72ba7491d142d5c83b476c4e76993bc
|
F src/test_devsym.c e7498904e72ba7491d142d5c83b476c4e76993bc
|
||||||
F src/test_func.c 13b582345fb1185a93e46c53310fae8547dcce20
|
F src/test_func.c 13b582345fb1185a93e46c53310fae8547dcce20
|
||||||
F src/test_hexio.c 1237f000ec7a491009b1233f5c626ea71bce1ea2
|
F src/test_hexio.c 1237f000ec7a491009b1233f5c626ea71bce1ea2
|
||||||
@ -846,14 +843,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
|||||||
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
||||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||||
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
|
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
|
||||||
P d95bcc052910cfd4848afe0d32f717506ad5a789
|
P 4271a95c8236bda4a4f8c02bf3a3560de1d00402
|
||||||
R 7f1ad401d5d30eb8789317264f68cef9
|
R 18c0cd58bb3c4ba7fcb0fd62a8f6bf9b
|
||||||
U drh
|
U dan
|
||||||
Z b110b81e4bbc30011f2058afc954649c
|
Z ca9e70bb404e459223eefc978ac4467f
|
||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: GnuPG v1.4.6 (GNU/Linux)
|
|
||||||
|
|
||||||
iD8DBQFMaZlGoxKgR168RlERArY4AJ4kGrynz7zzjVX9UDbRDl5/3v+PggCeJDeA
|
|
||||||
SaO0LUHGohOU+jh0oR4OoE4=
|
|
||||||
=VOx3
|
|
||||||
-----END PGP SIGNATURE-----
|
|
||||||
|
@ -1 +1 @@
|
|||||||
4271a95c8236bda4a4f8c02bf3a3560de1d00402
|
07570ce38051a05d6e8a71e39766850f6719ac07
|
@ -127,6 +127,7 @@
|
|||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Size of the write buffer used by journal files in bytes.
|
** Size of the write buffer used by journal files in bytes.
|
||||||
@ -135,6 +136,11 @@
|
|||||||
# define SQLITE_DEMOVFS_BUFFERSZ 8192
|
# define SQLITE_DEMOVFS_BUFFERSZ 8192
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
** The maximum pathname length supported by this VFS.
|
||||||
|
*/
|
||||||
|
#define MAXPATHNAME 512
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** When using this VFS, the sqlite3_file* handles that SQLite uses are
|
** When using this VFS, the sqlite3_file* handles that SQLite uses are
|
||||||
** actually pointers to instances of type DemoFile.
|
** actually pointers to instances of type DemoFile.
|
||||||
@ -446,16 +452,19 @@ static int demoOpen(
|
|||||||
** file has been synced to disk before returning.
|
** file has been synced to disk before returning.
|
||||||
*/
|
*/
|
||||||
static int demoDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
|
static int demoDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
|
||||||
int rc;
|
int rc; /* Return code */
|
||||||
|
|
||||||
rc = unlink(zPath);
|
rc = unlink(zPath);
|
||||||
|
if( rc!=0 && errno==ENOENT ) return SQLITE_OK;
|
||||||
|
|
||||||
if( rc==0 && dirSync ){
|
if( rc==0 && dirSync ){
|
||||||
int dfd; /* File descriptor open on directory */
|
int dfd; /* File descriptor open on directory */
|
||||||
int i; /* Iterator variable */
|
int i; /* Iterator variable */
|
||||||
char zDir[pVfs->mxPathname+1];/* Name of directory containing file zPath */
|
char zDir[MAXPATHNAME+1]; /* Name of directory containing file zPath */
|
||||||
|
|
||||||
/* Figure out the directory name from the path of the file deleted. */
|
/* Figure out the directory name from the path of the file deleted. */
|
||||||
sqlite3_snprintf(pVfs->mxPathname, zDir, "%s", zPath);
|
sqlite3_snprintf(MAXPATHNAME, zDir, "%s", zPath);
|
||||||
zDir[pVfs->mxPathname] = '\0';
|
zDir[MAXPATHNAME] = '\0';
|
||||||
for(i=strlen(zDir); i>1 && zDir[i]!='/'; i++);
|
for(i=strlen(zDir); i>1 && zDir[i]!='/'; i++);
|
||||||
zDir[i] = '\0';
|
zDir[i] = '\0';
|
||||||
|
|
||||||
@ -524,13 +533,13 @@ static int demoFullPathname(
|
|||||||
int nPathOut, /* Size of output buffer in bytes */
|
int nPathOut, /* Size of output buffer in bytes */
|
||||||
char *zPathOut /* Pointer to output buffer */
|
char *zPathOut /* Pointer to output buffer */
|
||||||
){
|
){
|
||||||
char zDir[pVfs->mxPathname+1];
|
char zDir[MAXPATHNAME+1];
|
||||||
if( zPath[0]=='/' ){
|
if( zPath[0]=='/' ){
|
||||||
zDir[0] = '\0';
|
zDir[0] = '\0';
|
||||||
}else{
|
}else{
|
||||||
getcwd(zDir, sizeof(zDir));
|
getcwd(zDir, sizeof(zDir));
|
||||||
}
|
}
|
||||||
zDir[pVfs->mxPathname] = '\0';
|
zDir[MAXPATHNAME] = '\0';
|
||||||
|
|
||||||
sqlite3_snprintf(nPathOut, zPathOut, "%s/%s", zDir, zPath);
|
sqlite3_snprintf(nPathOut, zPathOut, "%s/%s", zDir, zPath);
|
||||||
zPathOut[nPathOut-1] = '\0';
|
zPathOut[nPathOut-1] = '\0';
|
||||||
@ -609,7 +618,7 @@ sqlite3_vfs *sqlite3_demovfs(void){
|
|||||||
static sqlite3_vfs demovfs = {
|
static sqlite3_vfs demovfs = {
|
||||||
1, /* iVersion */
|
1, /* iVersion */
|
||||||
sizeof(DemoFile), /* szOsFile */
|
sizeof(DemoFile), /* szOsFile */
|
||||||
512, /* mxPathname */
|
MAXPATHNAME, /* mxPathname */
|
||||||
0, /* pNext */
|
0, /* pNext */
|
||||||
"demo", /* zName */
|
"demo", /* zName */
|
||||||
0, /* pAppData */
|
0, /* pAppData */
|
||||||
|
Loading…
Reference in New Issue
Block a user