OSDN Git Service

qtest: do not return freed argument vector from qtest_rsp
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 20 Nov 2020 07:31:49 +0000 (08:31 +0100)
committerThomas Huth <thuth@redhat.com>
Fri, 20 Nov 2020 14:04:16 +0000 (15:04 +0100)
If expected_args is 0, qtest frees the argument vector and then returns it
nevertheless.  Coverity complains; in practice this is not an issue because
expected_args == 0 means that the caller is not interested in the argument
vector, but it would be a potential problem if somebody wanted to add
commands with optional arguments to qtest.

Suggested-by: Kamil Dudka <kdudka@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20201120073149.99079-1-pbonzini@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/qtest/libqtest.c

index be0fb43..e49f3a1 100644 (file)
@@ -545,6 +545,7 @@ redo:
         }
     } else {
         g_strfreev(words);
+        words = NULL;
     }
 
     return words;