statements must be closed, or it leaves them all open
This commit is contained in:
parent
1406c7fad9
commit
baba10c54f
1 changed files with 5 additions and 0 deletions
5
db/db.go
5
db/db.go
|
@ -241,6 +241,11 @@ func (s *SQL) AddSDBlob(sdHash string, sdBlobLength int, sdBlob types.SdBlob) er
|
|||
if err != nil {
|
||||
return errors.Err(err)
|
||||
}
|
||||
|
||||
err = stmt.Close()
|
||||
if err != nil {
|
||||
return errors.Err(err)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue