]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Attempt to suppress a warning from Borland Code Guard.
authordrh <drh@noemail.net>
Wed, 24 Mar 2010 11:55:08 +0000 (11:55 +0000)
committerdrh <drh@noemail.net>
Wed, 24 Mar 2010 11:55:08 +0000 (11:55 +0000)
FossilOrigin-Name: be278979917336e7186d7830876180154b5280ba

manifest
manifest.uuid
src/vdbeaux.c

index 8ef6b39f1519fd06440b970a40f37f97298fb231..10a7953b45314182775f442e0f9ef937e5dc55c3 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,8 +1,8 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-C More\scommenting\sand\sdocumentation\senhancements\sin\sFTS3.
-D 2010-03-23T18:24:07
+C Attempt\sto\ssuppress\sa\swarning\sfrom\sBorland\sCode\sGuard.
+D 2010-03-24T11:55:08
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 4f2f967b7e58a35bb74fb7ec8ae90e0f4ca7868b
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -218,7 +218,7 @@ F src/vdbe.c 8acca6dab2505e9650f6f014ada6ef30570cba99
 F src/vdbe.h 471f6a3dcec4817ca33596fe7f6654d56c0e75f3
 F src/vdbeInt.h ae1e6ba0dd3fb4a886898d2829d748be701b01f8
 F src/vdbeapi.c 74c25680046a116b24b95393914d3669c23305dc
-F src/vdbeaux.c 0f352f63be78138bd94275aa3c8361e760ecc639
+F src/vdbeaux.c 863cd854d343e3e71622f20e5066d3007f9216c5
 F src/vdbeblob.c 5327132a42a91e8b7acfb60b9d2c3b1c5c863e0e
 F src/vdbemem.c 2a82f455f6ca6f78b59fb312f96054c04ae0ead1
 F src/vdbetrace.c 864cef96919323482ebd9986f2132435115e9cc2
@@ -796,14 +796,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
-P 3e4a0082170155b5b779afd075a3ee650530ca68
-R 5227b1a15356eed32d5ce7971a352572
+P 892e286709c4a72aae364b85dd43bea525bb1b4d
+R 4e7747e6db66a7edbd7dd3bc5f585004
 U drh
-Z 55be70887ecbe2a6b639a9af5e7abde1
+Z 2ab106cf9f20d8820321fdf18867654a
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.6 (GNU/Linux)
 
-iD8DBQFLqQdKoxKgR168RlERApBYAKCHb5ZhKZNk9Keu/8tRViMQHHsZ+ACfYBue
-f4ixLxLJfwNjN74T1v76hhU=
-=3nbs
+iD8DBQFLqf2ioxKgR168RlERAk6sAKCMJy1kpasa8Iln1YSuu28cwzVTfwCdGJ6Z
+xmlmqHa8MLbO8oc6p2G4nto=
+=XtmL
 -----END PGP SIGNATURE-----
index 954f20479a1ce7f31173591835dd3ccfee00068f..a0c61501b064696cfe4059eba7c480fbc9bfa087 100644 (file)
@@ -1 +1 @@
-892e286709c4a72aae364b85dd43bea525bb1b4d
\ No newline at end of file
+be278979917336e7186d7830876180154b5280ba
\ No newline at end of file
index 40a46ff67391cd7f76a3d807734bf77ed70f6f3e..b6b5a7b9334e18f36627c9ed469aa8253fd8388f 100644 (file)
@@ -743,7 +743,7 @@ void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){
     pOp->p4.pKeyInfo = pKeyInfo;
     if( pKeyInfo ){
       u8 *aSortOrder;
-      memcpy(pKeyInfo, zP4, nByte);
+      memcpy((char*)pKeyInfo, zP4, nByte);
       aSortOrder = pKeyInfo->aSortOrder;
       if( aSortOrder ){
         pKeyInfo->aSortOrder = (unsigned char*)&pKeyInfo->aColl[nField];