Skip to content

Commit

Permalink
[rekognition] Fix bug in (pointers in loop) (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
evalphobia authored Jun 26, 2020
1 parent dfd9107 commit a3a2166
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rekognition/collection.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ func (c *Collection) DeleteFaces(faceIDs []string) ([]string, error) {

ids := make([]*string, len(faceIDs))
for i, id := range faceIDs {
id := id
ids[i] = &id
}

Expand Down

0 comments on commit a3a2166

Please sign in to comment.