summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-core/meta/cve-update-db-native.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/cve-update-db-native.bb b/meta/recipes-core/meta/cve-update-db-native.bb
index 497d957d65..f27ade40db 100644
--- a/meta/recipes-core/meta/cve-update-db-native.bb
+++ b/meta/recipes-core/meta/cve-update-db-native.bb
@@ -138,6 +138,9 @@ def parse_node_and_insert(c, node, cveId):
138 if version != '*' and version != '-': 138 if version != '*' and version != '-':
139 # Version is defined, this is a '=' match 139 # Version is defined, this is a '=' match
140 yield [cveId, vendor, product, version, '=', '', ''] 140 yield [cveId, vendor, product, version, '=', '', '']
141 elif version == '-':
142 # no version information is available
143 yield [cveId, vendor, product, version, '', '', '']
141 else: 144 else:
142 # Parse start version, end version and operators 145 # Parse start version, end version and operators
143 op_start = '' 146 op_start = ''