From: Peter Maydell Date: Mon, 3 May 2021 16:55:24 +0000 (+0100) Subject: tests/qtest/rtc-test: Remove pointless NULL check X-Git-Tag: v6.1.0-rc0~123^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6c054176dba1c3669f7dbf0f3b6bf9e7245a0dfe;p=thirdparty%2Fqemu.git 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 Reviewed-by: Thomas Huth Reviewed-by: Alex Bennée Message-Id: <20210503165525.26221-3-peter.maydell@linaro.org> Signed-off-by: Thomas Huth --- diff --git a/tests/qtest/rtc-test.c b/tests/qtest/rtc-test.c index 402ce2c6090..8126ab1bdb8 100644 --- a/tests/qtest/rtc-test.c +++ b/tests/qtest/rtc-test.c @@ -686,7 +686,7 @@ static void periodic_timer(void) int main(int argc, char **argv) { - QTestState *s = NULL; + QTestState *s; int ret; g_test_init(&argc, &argv, NULL); @@ -712,9 +712,7 @@ int main(int argc, char **argv) ret = g_test_run(); - if (s) { - qtest_quit(s); - } + qtest_quit(s); return ret; }