diff options
author | andrefsp <andrefsp@gmail.com> | 2016-11-07 11:57:52 +0000 |
---|---|---|
committer | andrefsp <andrefsp@gmail.com> | 2016-11-07 11:57:52 +0000 |
commit | 6c0a6bb9cd9183c80883865877b76ef2e23905fc (patch) | |
tree | 6a2e9434d2c7dc352a2c0e4befd147a9c396ddf6 /sqlite3.go | |
parent | Merge branch 'master' of https://github.com/mattn/go-sqlite3 (diff) | |
download | golite-6c0a6bb9cd9183c80883865877b76ef2e23905fc.tar.gz golite-6c0a6bb9cd9183c80883865877b76ef2e23905fc.tar.xz |
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.
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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() |