dtc: Fix NULL pointer use in dtlabel + dtref case
If we have a construct like this:
label: &handle {
...
};
Running dtc on it will cause a segfault, because we use 'target'
when it could be NULL. Move the add_label() call into the if
statement to fix this potentially bad use of a NULL pointer.
Signed-off-by: Stephen Boyd <stephen.boyd@linaro.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
committed by
David Gibson
parent
43eb551426
commit
3b9c97093d
@@ -511,6 +511,7 @@ dtc_tests () {
|
||||
run_test dtbs_equal_ordered multilabel.test.dtb multilabel_merge.test.dtb
|
||||
run_dtc_test -I dts -O dtb -o dtc_tree1_merge_path.test.dtb test_tree1_merge_path.dts
|
||||
tree1_tests dtc_tree1_merge_path.test.dtb test_tree1.dtb
|
||||
run_wrap_error_test $DTC -I dts -O dtb -o /dev/null test_label_ref.dts
|
||||
|
||||
# Check prop/node delete functionality
|
||||
run_dtc_test -I dts -O dtb -o dtc_tree1_delete.test.dtb test_tree1_delete.dts
|
||||
|
||||
Reference in New Issue
Block a user