mirror of https://github.com/go-gitea/gitea.git
Update vendor/github.com/mattn/go-sqlite3 (#5162)
To fix build failure on Windows/386
This commit is contained in:
parent
efa4e6bc6f
commit
317ddb7283
|
@ -566,11 +566,11 @@
|
||||||
version = "v1.46.1"
|
version = "v1.46.1"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:9996f2363985103284c59b3d0ca5be58deb1b0db22144bb2fcfa0b4e16f0e61b"
|
digest = "1:c9724c929d27a14475a45b17a267dbc60671c0bc2c5c05ed21f011f7b5bc9fb5"
|
||||||
name = "github.com/mattn/go-sqlite3"
|
name = "github.com/mattn/go-sqlite3"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
pruneopts = "NUT"
|
pruneopts = "NUT"
|
||||||
revision = "f3aa5ce89995fab8c7777f7821f689d9ac81c80f"
|
revision = "c7c4067b79cc51e6dfdcef5c702e74b1e0fa7c75"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
|
|
@ -41,7 +41,7 @@ ignored = ["google.golang.org/appengine*"]
|
||||||
|
|
||||||
[[override]]
|
[[override]]
|
||||||
name = "github.com/mattn/go-sqlite3"
|
name = "github.com/mattn/go-sqlite3"
|
||||||
revision = "f3aa5ce89995fab8c7777f7821f689d9ac81c80f"
|
revision = "c7c4067b79cc51e6dfdcef5c702e74b1e0fa7c75"
|
||||||
|
|
||||||
[[override]]
|
[[override]]
|
||||||
name = "github.com/gorilla/mux"
|
name = "github.com/gorilla/mux"
|
||||||
|
|
|
@ -19,6 +19,7 @@ extern void unlock_notify_callback(void *arg, int argc);
|
||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"math"
|
||||||
"sync"
|
"sync"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
@ -59,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 := ((*(*[1 << 30]*[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