[oe-commits] [bitbake] 01/05: runqueue: Fix corruption issue

git at git.openembedded.org git at git.openembedded.org
Mon Aug 12 15:25:28 UTC 2019


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

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

commit a4b4ae66b66a920e177f4985a3cd2f2b721dc1fb
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sun Aug 11 14:59:12 2019 +0100

    runqueue: Fix corruption issue
    
    We need to copy this set, not modify the original else all kinds
    of weird and bad things break, mostly from circular references.
    We'll not go into how much sleep I lost tracking down the fallout
    from this.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index bb61087..2bf19b9 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2124,7 +2124,7 @@ class RunQueueExecute:
     # as most code can't handle them
     def build_taskdepdata(self, task):
         taskdepdata = {}
-        next = self.rqdata.runtaskentries[task].depends
+        next = self.rqdata.runtaskentries[task].depends.copy()
         next.add(task)
         next = self.filtermcdeps(task, next)
         while next:

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


More information about the Openembedded-commits mailing list