Fix typo in bind.test that was causing a seg-fault. (CVS 1424)

FossilOrigin-Name: d1af1a4acce77b87367049da93b13746b743e831
This commit is contained in:
danielk1977 2004-05-21 02:11:40 +00:00
parent 4ad1713c5e
commit 2f2322fa9c
3 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -1 +1 @@
307b55006c401f10ec5fa5b12cc7d5ba860f9a46
d1af1a4acce77b87367049da93b13746b743e831

View 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
} {}