mirror of https://github.com/status-im/nim-eth.git
fix missing gcsafe (#591)
This commit is contained in:
parent
ade6d19691
commit
ca1c205441
|
@ -649,7 +649,7 @@ proc openKvStore*(
|
||||||
tmp = SqKeyspace() # make close harmless
|
tmp = SqKeyspace() # make close harmless
|
||||||
ok res
|
ok res
|
||||||
|
|
||||||
proc customScalarBlobFunction(ctx: ptr sqlite3_context, n: cint, v: ptr ptr sqlite3_value) {.cdecl.} =
|
proc customScalarBlobFunction(ctx: ptr sqlite3_context, n: cint, v: ptr ptr sqlite3_value) {.cdecl, callback.} =
|
||||||
let ptrs = cast[ptr UncheckedArray[ptr sqlite3_value]](v)
|
let ptrs = cast[ptr UncheckedArray[ptr sqlite3_value]](v)
|
||||||
let blob1 = cast[ptr UncheckedArray[byte]](sqlite3_value_blob(ptrs[][0]))
|
let blob1 = cast[ptr UncheckedArray[byte]](sqlite3_value_blob(ptrs[][0]))
|
||||||
let blob2 = cast[ptr UncheckedArray[byte]](sqlite3_value_blob(ptrs[][1]))
|
let blob2 = cast[ptr UncheckedArray[byte]](sqlite3_value_blob(ptrs[][1]))
|
||||||
|
|
Loading…
Reference in New Issue