mirror of https://github.com/mattn/go-sqlite3.git
Merge pull request #655 from typeless/fix-too-large-arrary-error-v2
Fix build failure of incorrect expression for unsafe.Sizeof
This commit is contained in:
commit
c7c4067b79
|
@ -60,7 +60,7 @@ func (t *unlock_notify_table) get(h uint) chan struct{} {
|
||||||
//export unlock_notify_callback
|
//export unlock_notify_callback
|
||||||
func unlock_notify_callback(argv unsafe.Pointer, argc C.int) {
|
func unlock_notify_callback(argv unsafe.Pointer, argc C.int) {
|
||||||
for i := 0; i < int(argc); i++ {
|
for i := 0; i < int(argc); i++ {
|
||||||
parg := ((*(*[(math.MaxInt32 - 1) / unsafe.Sizeof(uintptr)]*[1]uint)(argv))[i])
|
parg := ((*(*[(math.MaxInt32 - 1) / unsafe.Sizeof((*C.uint)(nil))]*[1]uint)(argv))[i])
|
||||||
arg := *parg
|
arg := *parg
|
||||||
h := arg[0]
|
h := arg[0]
|
||||||
c := unt.get(h)
|
c := unt.get(h)
|
||||||
|
|
Loading…
Reference in New Issue