Fix InnerConnection decode_result / changes

Fix #931
This commit is contained in:
gwenn
2021-06-13 10:39:36 +02:00
parent ee7f7b89d5
commit 9cdf80f3ca
4 changed files with 6 additions and 6 deletions

View File

@@ -223,7 +223,7 @@ impl Connection {
row_id: i64,
read_only: bool,
) -> Result<Blob<'a>> {
let mut c = self.db.borrow_mut();
let c = self.db.borrow_mut();
let mut blob = ptr::null_mut();
let db = db.as_cstring()?;
let table = super::str_to_cstring(table)?;