mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-12 13:01:09 +03:00
Untested fix for building on VxWorks.
FossilOrigin-Name: f14d55cf358b0392d3b8cd61dc85f43a610a8edf
This commit is contained in:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
|||||||
C Fix\sa\sformatting\stypo\sin\sa\scomment.\s\sNo\schanges\sto\scode.
|
C Untested\sfix\sfor\sbuilding\son\sVxWorks.
|
||||||
D 2013-04-26T19:33:34.383
|
D 2013-04-27T12:13:29.526
|
||||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||||
F Makefile.in ce81671efd6223d19d4c8c6b88ac2c4134427111
|
F Makefile.in ce81671efd6223d19d4c8c6b88ac2c4134427111
|
||||||
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
||||||
@@ -177,7 +177,7 @@ F src/notify.c 976dd0f6171d4588e89e874fcc765e92914b6d30
|
|||||||
F src/os.c b4ad71336fd96f97776f75587cd9e8218288f5be
|
F src/os.c b4ad71336fd96f97776f75587cd9e8218288f5be
|
||||||
F src/os.h 4a46270a64e9193af4a0aaa3bc2c66dc07c29b3f
|
F src/os.h 4a46270a64e9193af4a0aaa3bc2c66dc07c29b3f
|
||||||
F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04
|
F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04
|
||||||
F src/os_unix.c f86cd628ffb9ccf3adcc5c15b02c00a64eaf598e
|
F src/os_unix.c 5a214c5431fd005dbb3b8bbaaa306433e8e9b48f
|
||||||
F src/os_win.c 673b3e3d1fa3040d8d95a7f1f5e0e553aed56cfb
|
F src/os_win.c 673b3e3d1fa3040d8d95a7f1f5e0e553aed56cfb
|
||||||
F src/pager.c 4a9160d268977e56ae2df90182050ab30fca715d
|
F src/pager.c 4a9160d268977e56ae2df90182050ab30fca715d
|
||||||
F src/pager.h 5cb78b8e1adfd5451e600be7719f5a99d87ac3b1
|
F src/pager.h 5cb78b8e1adfd5451e600be7719f5a99d87ac3b1
|
||||||
@@ -1062,7 +1062,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
|
|||||||
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
||||||
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
|
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
|
||||||
F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
|
F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
|
||||||
P c47144e98c0a0f9e09780c945de10c57b6a495ea
|
P 7a97226ffe174349e7113340f5354c4e44bd9738
|
||||||
R 9aa1f84a471b601353c6669ae1266379
|
R 45f16684eb908e3d81d1d0d938ab9d11
|
||||||
U drh
|
U drh
|
||||||
Z 18431ca135b1f0070cd379da7401fa7c
|
Z 3089ee3240913ca0c76196e0917eb228
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
7a97226ffe174349e7113340f5354c4e44bd9738
|
f14d55cf358b0392d3b8cd61dc85f43a610a8edf
|
||||||
@@ -5287,9 +5287,8 @@ static int fillInUnixFile(
|
|||||||
if( h>=0 ) robust_close(pNew, h, __LINE__);
|
if( h>=0 ) robust_close(pNew, h, __LINE__);
|
||||||
h = -1;
|
h = -1;
|
||||||
osUnlink(zFilename);
|
osUnlink(zFilename);
|
||||||
isDelete = 0;
|
pNew->ctrlFlags |= UNIXFILE_DELETE;
|
||||||
}
|
}
|
||||||
if( isDelete ) pNew->ctrlFlags |= UNIXFILE_DELETE;
|
|
||||||
#endif
|
#endif
|
||||||
if( rc!=SQLITE_OK ){
|
if( rc!=SQLITE_OK ){
|
||||||
if( h>=0 ) robust_close(pNew, h, __LINE__);
|
if( h>=0 ) robust_close(pNew, h, __LINE__);
|
||||||
|
|||||||
Reference in New Issue
Block a user