[oe-commits] [openembedded-core] 08/14: cve-check.bbclass: initialize to_append

git at git.openembedded.org git at git.openembedded.org
Wed Jul 17 18:27:25 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit ecd878119b6692dbbe229082663ce5659c9a6d19
Author: Mikko Rapeli <mikko.rapeli at bmw.de>
AuthorDate: Wed Jul 17 12:08:37 2019 +0300

    cve-check.bbclass: initialize to_append
    
    Fixes build failure with core-image-minimal:
    
    Exception: UnboundLocalError: local variable 'to_append' referenced before assignment
    
    Signed-off-by: Mikko Rapeli <mikko.rapeli at bmw.de>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/cve-check.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass
index 19ac48c..2a13816 100644
--- a/meta/classes/cve-check.bbclass
+++ b/meta/classes/cve-check.bbclass
@@ -207,6 +207,7 @@ def check_cves(d, patched_cves):
             elif cve in patched_cves:
                 bb.note("%s has been patched" % (cve))
             else:
+                to_append = False
                 if (operator_start == '=' and pv == version_start):
                     cves_unpatched.append(cve)
                 else:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list