diff --git a/internal/report/table_helpers.go b/internal/report/table_helpers.go index a0d8b3a1..5d4eb519 100644 --- a/internal/report/table_helpers.go +++ b/internal/report/table_helpers.go @@ -272,6 +272,9 @@ func getSpecFrequencyBuckets(outputs map[string]script.ScriptOutput) ([][]string archMultiplier = 1 } for _, count := range bucketCoreCounts { + if startRange > count { + break + } if archMultiplier > 1 { totalCoreCount := count * archMultiplier if totalCoreStartRange > int(totalCoreCount) {