From 6c0a6bb9cd9183c80883865877b76ef2e23905fc Mon Sep 17 00:00:00 2001 From: andrefsp Date: Mon, 7 Nov 2016 11:57:52 +0000 Subject: Fix data race introduced on 605d9d08 This commit will fix a data race introduced on 605d9d08 and also make sure travis CI will now check for data races. --- sqlite3.go | 1 - 1 file changed, 1 deletion(-) (limited to 'sqlite3.go') diff --git a/sqlite3.go b/sqlite3.go index ac069e3..9b55ef1 100644 --- a/sqlite3.go +++ b/sqlite3.go @@ -847,7 +847,6 @@ func (rc *SQLiteRows) Close() error { } if rc.done != nil { close(rc.done) - rc.done = nil } if rc.cls { return rc.s.Close() -- cgit v1.2.3