We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867ec21 commit 5583431Copy full SHA for 5583431
blob_io.go
@@ -52,7 +52,7 @@ func (conn *SQLiteConn) Blob(database, table, column string, rowid int64, flags
52
}
53
54
size := int(C.sqlite3_blob_bytes(blob))
55
- bb := &SQLiteBlob{conn, blob, size, 0}
+ bb := &SQLiteBlob{conn: conn, blob: blob, size: size, offset: 0}
56
57
runtime.SetFinalizer(bb, (*SQLiteBlob).Close)
58
0 commit comments