Skip to content

Commit

Permalink
Merge pull request #2053 from greenbone/change-missing-cve-severity
Browse files Browse the repository at this point in the history
Change: Use score -99 for missing severity in CVEs
  • Loading branch information
jhelmold authored Jul 28, 2023
2 parents 0a2ff2d + 970befb commit 66d6deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manage_sql_secinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -2529,7 +2529,7 @@ insert_cve_from_entry (element_t entry, element_t last_modified,
}

if (score == NULL)
severity_dbl = 0;
severity_dbl = SEVERITY_MISSING;
else
severity_dbl = atof (element_text (score));

Expand Down

0 comments on commit 66d6deb

Please sign in to comment.