diff mbox series

lib/oe/sbom30: Fix SHA256 hash dictionary

Message ID 20250130133720.988355-1-JPEWhacker@gmail.com
State New
Headers show
Series lib/oe/sbom30: Fix SHA256 hash dictionary | expand

Commit Message

Joshua Watt Jan. 30, 2025, 1:37 p.m. UTC
Fixes a bug in the code that created the hash dictionary that was
accidentally excluding items with a SHA256 hash instead of including
them

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 meta/lib/oe/sbom30.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/lib/oe/sbom30.py b/meta/lib/oe/sbom30.py
index f7c4b323d56..0595ebd41ca 100644
--- a/meta/lib/oe/sbom30.py
+++ b/meta/lib/oe/sbom30.py
@@ -195,7 +195,7 @@  class ObjectSet(oe.spdx30.SHACLObjectSet):
                 if not isinstance(v, oe.spdx30.Hash):
                     continue
 
-                if v.algorithm == oe.spdx30.HashAlgorithm.sha256:
+                if v.algorithm != oe.spdx30.HashAlgorithm.sha256:
                     continue
 
                 self.by_sha256_hash.setdefault(v.hashValue, set()).add(obj)