target: esp_xtensa_smp: fix clang report
authorAntonio Borneo <borneo.antonio@gmail.com>
Sat, 25 Jun 2022 10:40:24 +0000 (12:40 +0200)
committerAntonio Borneo <borneo.antonio@gmail.com>
Sat, 2 Jul 2022 08:27:31 +0000 (08:27 +0000)
commitb7125c369c4e5bde86d6688cbd1b7a87384d3d24
treeacbf4996dfe7a7b0d55bc5545df967d78f6c7f00
parent06c3240155ccbb22b2db5782ffedf1e0c544b073
target: esp_xtensa_smp: fix clang report

The variable 'smp_break' is only set and used in case of smp.
But clang cannot track if 'target->smp' get modified between the
set and the use of 'smp_break', so it consider possible to use
'smp_break' uninitialized.

Initialize 'smp_break' to silent clang.

Change-Id: Ifa25a84fe9ffa25b8b58d7920ec77994c3b7ebfe
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Fixes: 77287b8d47b4 ("target: add Espressif ESP32 basic support")
Reviewed-on: https://review.openocd.org/c/openocd/+/7050
Reviewed-by: Erhan Kurubas <erhan.kurubas@espressif.com>
Tested-by: jenkins
src/target/espressif/esp_xtensa_smp.c