diff options
author | Greg Holt <gregory.holt@gmail.com> | 2017-08-21 13:30:07 -0700 |
---|---|---|
committer | Greg Holt <gregory.holt@gmail.com> | 2017-08-21 13:30:07 -0700 |
commit | 85e456ef27b5b5a64214bc5a74cbf8ec3114f5e5 (patch) | |
tree | e25a638a17f0f054b2ec13f5e816815364e8771c /sqlite3.go | |
parent | Added TestNilAndEmptyBytes (diff) | |
download | golite-85e456ef27b5b5a64214bc5a74cbf8ec3114f5e5.tar.gz golite-85e456ef27b5b5a64214bc5a74cbf8ec3114f5e5.tar.xz |
Fix to pass TestNilAndEmptyBytes
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -867,10 +867,11 @@ func (s *SQLiteStmt) bind(args []namedValue) error { case float64: rv = C.sqlite3_bind_double(s.s, n, C.double(v)) case []byte: - if len(v) == 0 { + ln := len(v) + if ln == 0 { v = placeHolder } - rv = C._sqlite3_bind_blob(s.s, n, unsafe.Pointer(&v[0]), C.int(len(v))) + rv = C._sqlite3_bind_blob(s.s, n, unsafe.Pointer(&v[0]), C.int(ln)) case time.Time: b := []byte(v.Format(SQLiteTimestampFormats[0])) rv = C._sqlite3_bind_text(s.s, n, (*C.char)(unsafe.Pointer(&b[0])), C.int(len(b))) |