aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/v3metric.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cvss/v3metric.go')
-rw-r--r--internal/cvss/v3metric.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/internal/cvss/v3metric.go b/internal/cvss/v3metric.go
index a8f25de..e9a6763 100644
--- a/internal/cvss/v3metric.go
+++ b/internal/cvss/v3metric.go
@@ -314,8 +314,11 @@ var v3MetricStrLut = map[string]v3Metric {
// Get CVSS 3.x metric key.
func (m v3Metric) Key() Key {
- k, _ := v3KeyLut[m]
- return k
+ if k, ok := v3KeyLut[m]; ok {
+ return k
+ } else {
+ return v3InvalidKey
+ }
}
// Convert string to CVSS 3.1 metric.