Shadowed err value (stmt.go)
The error assigned [here](https://gitlab.com/cznic/sqlite/-/blob/v1.48.1/stmt.go?ref_type=tags#L153) is shadowed by a prior err declaration in the same function, so it is not the one being returned. Consider renaming the variable or returning the error explicitly.
issue