From 6164d6dc5ba76e6e776095f28a03254b41e4ec70 Mon Sep 17 00:00:00 2001 From: "Harper, Jason M" Date: Thu, 30 Oct 2025 15:02:49 -0700 Subject: [PATCH] fix frequency bucket assembly Signed-off-by: Harper, Jason M --- internal/report/table_helpers.go | 3 +++ 1 file changed, 3 insertions(+) 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) {