diff options
-rw-r--r-- | meta/recipes-core/meta/cve-update-db-native.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/cve-update-db-native.bb b/meta/recipes-core/meta/cve-update-db-native.bb index 792252f510..320bd452f1 100644 --- a/meta/recipes-core/meta/cve-update-db-native.bb +++ b/meta/recipes-core/meta/cve-update-db-native.bb | |||
@@ -390,7 +390,7 @@ def update_db_fkie(conn, jsondata): | |||
390 | 390 | ||
391 | for config in elt['configurations']: | 391 | for config in elt['configurations']: |
392 | # This is suboptimal as it doesn't handle AND/OR and negate, but is better than nothing | 392 | # This is suboptimal as it doesn't handle AND/OR and negate, but is better than nothing |
393 | for node in config["nodes"]: | 393 | for node in config.get("nodes") or []: |
394 | parse_node_and_insert(conn, node, cveId, False) | 394 | parse_node_and_insert(conn, node, cveId, False) |
395 | 395 | ||
396 | 396 | ||