mirror of
https://github.com/qemu/qemu.git
synced 2025-07-27 12:20:07 +00:00
hw/timer/sse-timer: Propagate eventual error in sse_timer_realize()
If the SSECounter link is absent, we set an error message in sse_timer_realize() but forgot to propagate this error. Add the missing 'return'. Fixes: CID 1450755 (Null pointer dereferences) Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20210312001845.1562670-1-f4bug@amsat.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
f4223d2e75
commit
fc49b77fd3
@ -415,6 +415,7 @@ static void sse_timer_realize(DeviceState *dev, Error **errp)
|
|||||||
|
|
||||||
if (!s->counter) {
|
if (!s->counter) {
|
||||||
error_setg(errp, "counter property was not set");
|
error_setg(errp, "counter property was not set");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
s->counter_notifier.notify = sse_timer_counter_callback;
|
s->counter_notifier.notify = sse_timer_counter_callback;
|
||||||
|
Loading…
Reference in New Issue
Block a user