]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix typo in bind.test that was causing a seg-fault. (CVS 1424)
authordanielk1977 <danielk1977@noemail.net>
Fri, 21 May 2004 02:11:40 +0000 (02:11 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Fri, 21 May 2004 02:11:40 +0000 (02:11 +0000)
FossilOrigin-Name: d1af1a4acce77b87367049da93b13746b743e831

manifest
manifest.uuid
test/bind.test

index 1a93546ea2576eadfe76bfcb5ddc3d38582781b3..78dc1c8111f65af79aca8b791f8eeccdf4b23d47 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\snew\ssqlite3_open()\sand\ssqlite3_open16()\sAPIs.\s(CVS\s1423)
-D 2004-05-21T01:47:27
+C Fix\stypo\sin\sbind.test\sthat\swas\scausing\sa\sseg-fault.\s(CVS\s1424)
+D 2004-05-21T02:11:41
 F Makefile.in ab7b0d5118e2da97bac66be8684a1034e3500f5a
 F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -75,7 +75,7 @@ F test/attach2.test 7a722607c1fa37837d3b2717605357d89b86c8b9
 F test/auth.test 5c4d95cdaf539c0c236e20ce1f71a93e7dde9185
 F test/bigfile.test ea904b853ce2d703b16c5ce90e2b54951bc1ae81
 F test/bigrow.test 8ab252dba108f12ad64e337b0f2ff31a807ac578
-F test/bind.test 4517a8e8296c12f57f5917764cc1029ff567ff4f
+F test/bind.test f228f64e3d2258c2395ece636b82c492ffbddc4a
 F test/btree.test 08e4093c78d2bc1d54e27266f8d17fed14751125
 F test/btree2.test aa4a6d05b1ea90b1acaf83ba89039dd302a88635
 F test/btree4.test 3797b4305694c7af6828675b0f4b1424b8ca30e4
@@ -195,7 +195,7 @@ F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604
 F www/tclsqlite.tcl b9271d44dcf147a93c98f8ecf28c927307abd6da
 F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1
 F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
-P 0736b7e8401f587f8b412602d029ef9bd69425f6
-R 48a2aee2f380542eefb73a0652ba3654
+P 307b55006c401f10ec5fa5b12cc7d5ba860f9a46
+R c875e3b0090a6efd4626f8cd52f4374a
 U danielk1977
-Z 95516270bea0185aee7836097f272d88
+Z 350a5798377f7d0dbf398cf2f00d7b23
index f5a141590cdbcbb947b08c146c0f12397214cb66..0093fb3844e94a5b4e9a28ac57c4a8cb2151e34b 100644 (file)
@@ -1 +1 @@
-307b55006c401f10ec5fa5b12cc7d5ba860f9a46
\ No newline at end of file
+d1af1a4acce77b87367049da93b13746b743e831
\ No newline at end of file
index fe95bd5214b7861058f5dd0454ec8dcc786d3fc5..bc7dbd629b170c23fffbb16c40030776b6e359cd 100644 (file)
@@ -11,7 +11,7 @@
 # This file implements regression tests for SQLite library.  The
 # focus of this script testing the sqlite_bind API.
 #
-# $Id: bind.test,v 1.4 2004/05/21 01:47:27 danielk1977 Exp $
+# $Id: bind.test,v 1.5 2004/05/21 02:11:41 danielk1977 Exp $
 #
 
 set testdir [file dirname $argv0]
@@ -71,7 +71,7 @@ do_test bind-2.1 {
   execsql {
     DELETE FROM t1;
   }
-  set VM [sqlite3_bind_int32 $DB {INSERT INTO t1 VALUES(?,?,?)} TAIL]
+  set VM [sqlite3_prepare $DB {INSERT INTO t1 VALUES(?,?,?)} -1 TAIL]
   set TAIL
 } {}