From febd5534b07edfdef15cedb0578730c582c7373f Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 13 Dec 2016 20:07:00 +1300 Subject: data_smart: fix resetting of reference on variablehistory There is no "datasmart" member, only dataroot. This dates back to the original implementation of variable history support - it's surprising we haven't noticed the issue until now, but I guess it's rare to change a copy of a datastore in a manner which using the old reference would cause an issue. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- lib/bb/data_smart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py index be43eb9be..17768c8f4 100644 --- a/lib/bb/data_smart.py +++ b/lib/bb/data_smart.py @@ -844,7 +844,7 @@ class DataSmart(MutableMapping): data = DataSmart() data.dict["_data"] = self.dict data.varhistory = self.varhistory.copy() - data.varhistory.datasmart = data + data.varhistory.dataroot = data data.inchistory = self.inchistory.copy() data._tracking = self._tracking -- cgit 1.2.3-korg