1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix a segfault in sqlite3OsLock() (CVS 1525)

FossilOrigin-Name: 51348b82c4d5801091537b80059d770410774905
This commit is contained in:
danielk1977
2004-06-02 06:30:16 +00:00
parent 7a224deb5f
commit ecb2a9644b
4 changed files with 23 additions and 24 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this script is multithreading behavior
#
# $Id: thread1.test,v 1.3 2004/02/11 02:18:07 drh Exp $
# $Id: thread1.test,v 1.4 2004/06/02 06:30:18 danielk1977 Exp $
set testdir [file dirname $argv0]
@ -147,12 +147,12 @@ do_test thread1-2.9 {
thread_result C
} SQLITE_DONE
do_test thread1-2.10 {
execsql {SELECT * FROM t2}
} {98 99}
do_test thread1-2.11 {
thread_finalize C
thread_result C
} SQLITE_OK
do_test thread1-2.11 {
execsql {SELECT * FROM t2}
} {98 99}
thread_halt *
finish_test