Commit ef9cceca authored by Seth Vargo's avatar Seth Vargo

Merge pull request #1748 from BlackIkeEagle/constant-4294967295-overflows-int

atlas post-processor on 32bit uint32 overflows int
parents 0e4d7613 272ef5a6
...@@ -11,13 +11,14 @@ import ( ...@@ -11,13 +11,14 @@ import (
// //
// This function just uses brute force instead of a more optimized algorithm. // This function just uses brute force instead of a more optimized algorithm.
func longestCommonPrefix(vs []string) string { func longestCommonPrefix(vs []string) string {
var length int64
// Find the shortest string // Find the shortest string
var shortest string var shortest string
length := math.MaxUint32 length = math.MaxUint32
for _, v := range vs { for _, v := range vs {
if len(v) < length { if int64(len(v)) < length {
shortest = v shortest = v
length = len(v) length = int64(len(v))
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment