github-vet / github-vet/rangeloop-pointer-findings
kardianos/rdb: valuer.go; 18 LoC
- Dominant language
- No language data
- Stars
- 0
- Forks
- 0
- PR merge metrics
- PR metrics pending
Description
Found a possible issue in [kardianos/rdb](https://www.github.com/kardianos/rdb) at [valuer.go](https://github.com/kardianos/rdb/blob/c9ecbfa70891b66e577e399a4615a0cec9a3db09/valuer.go#L72-L89)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message.
> reference to field is reassigned at line 79
[Click here to see the code in its original context.](https://github.com/kardianos/rdb/blob/c9ecbfa70891b66e577e399a4615a0cec9a3db09/valuer.go#L72-L89)
Click here to show the 18 line(s) of Go which triggered the analyzer.
```go
for i, field := range v.cmd.Fields {
if len(field.Name) == 0 {
if i >= len(v.columns) {
// Don't error. Some queries may return
// different number of columns.
continue
}
v.fields[i] = &field
} else {
col, found := v.columnLookup[field.Name]
if !found {
// Don't error. Some queries may return
// different number of columns.
continue
}
v.fields[col.Index] = &field
}
}
```
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: c9ecbfa70891b66e577e399a4615a0cec9a3db09
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.