github-vet / github-vet/rangeloop-pointer-findings
LunaNode/cloug: provider/digitalocean/digitalocean.go; 12 LoC
- Dominant language
- No language data
- Stars
- 0
- Forks
- 0
- PR merge metrics
- PR metrics pending
Description
Found a possible issue in [LunaNode/cloug](https://www.github.com/LunaNode/cloug) at [provider/digitalocean/digitalocean.go](https://github.com/LunaNode/cloug/blob/15aa78ff93f52f41a457c61983f6e3ec620d2d21/provider/digitalocean/digitalocean.go#L353-L364)
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 apiImage is reassigned at line 362
[Click here to see the code in its original context.](https://github.com/LunaNode/cloug/blob/15aa78ff93f52f41a457c61983f6e3ec620d2d21/provider/digitalocean/digitalocean.go#L353-L364)
Click here to show the 12 line(s) of Go which triggered the analyzer.
```go
for _, apiImage := range apiImages {
if !apiImage.Public {
continue
} else if strings.ToLower(apiImage.Distribution) != matchDistribution {
continue
} else if !strings.Contains(apiImage.Name, matchArchitecture) {
continue
}
if bestImage == nil || apiImage.ID > bestImage.ID {
bestImage = &apiImage
}
}
```
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: 15aa78ff93f52f41a457c61983f6e3ec620d2d21
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.