mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-15 00:33:02 -06:00
[chore] update go-sqlite3 to v0.19.0 (#3406)
This commit is contained in:
parent
1e421cb912
commit
2c3f1f4ddb
31 changed files with 274 additions and 171 deletions
9
vendor/github.com/ncruces/go-sqlite3/internal/util/handle.go
generated
vendored
9
vendor/github.com/ncruces/go-sqlite3/internal/util/handle.go
generated
vendored
|
|
@ -35,17 +35,22 @@ func DelHandle(ctx context.Context, id uint32) error {
|
|||
s := ctx.Value(moduleKey{}).(*moduleState)
|
||||
a := s.handles[^id]
|
||||
s.handles[^id] = nil
|
||||
s.holes++
|
||||
if l := uint32(len(s.handles)); l == ^id {
|
||||
s.handles = s.handles[:l-1]
|
||||
} else {
|
||||
s.holes++
|
||||
}
|
||||
if c, ok := a.(io.Closer); ok {
|
||||
return c.Close()
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func AddHandle(ctx context.Context, a any) (id uint32) {
|
||||
func AddHandle(ctx context.Context, a any) uint32 {
|
||||
if a == nil {
|
||||
panic(NilErr)
|
||||
}
|
||||
|
||||
s := ctx.Value(moduleKey{}).(*moduleState)
|
||||
|
||||
// Find an empty slot.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue