tests/qtest/ipmi-kcs: Fix assert side-effect
authorPhilippe Mathieu-Daudé <philmd@redhat.com>
Wed, 2 Sep 2020 08:07:57 +0000 (10:07 +0200)
committerThomas Huth <thuth@redhat.com>
Thu, 3 Sep 2020 10:47:33 +0000 (12:47 +0200)
Fix assert side-effect reported by Coverity:

  /qemu/tests/qtest/ipmi-kcs-test.c: 84 in kcs_wait_obf()
  83         while (IPMI_KCS_CMDREG_GET_OBF() == 0) {
  >>>     CID 1432368:  Incorrect expression  (ASSERT_SIDE_EFFECT)
  >>>     Argument "--count" of g_assert() has a side effect.  The containing function might work differently in a non-debug build.
  84             g_assert(--count != 0);

Reported-by: Coverity (CID 1432368)
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200902080801.160652-2-philmd@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/qtest/ipmi-kcs-test.c

index 693a6aacb521edbfe5260d478549754bf79dace8..fc0a918c8d1f1bbe67a7897f0b6d0b6e3a4d3df5 100644 (file)
@@ -81,7 +81,8 @@ static void kcs_wait_obf(void)
 {
     unsigned int count = 1000;
     while (IPMI_KCS_CMDREG_GET_OBF() == 0) {
-        g_assert(--count != 0);
+        --count;
+        g_assert(count != 0);
     }
 }