tests/qtest/rtc-test: Remove pointless NULL check
commit6c054176dba1c3669f7dbf0f3b6bf9e7245a0dfe
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 3 May 2021 16:55:24 +0000 (3 17:55 +0100)
committerThomas Huth <thuth@redhat.com>
Fri, 14 May 2021 10:28:01 +0000 (14 12:28 +0200)
tree9f22d9ad9d27f82e7a3cd5a1e85a97bc6e09aa05
parente7b13acdf2bc6f05bbad46f76c7cb63f63426918
tests/qtest/rtc-test: Remove pointless NULL check

In rtc-test.c we know that s is non-NULL because qtest_start()
will return a non-NULL value, and we assume this when we
pass s to qtest_irq_intercept_in(). So we can drop the
initial assignment of NULL and the "if (s)" condition at
the end of the function.

Fixes: Coverity CID 1432353
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210503165525.26221-3-peter.maydell@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/qtest/rtc-test.c