tests/qtest/migration-test: Use g_autofree to avoid leaks on error paths
commit2ed765fdeed88cb5434148f0d6ef27ece3dc063c
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 6 May 2021 18:58:19 +0000 (6 19:58 +0100)
committerThomas Huth <thuth@redhat.com>
Fri, 14 May 2021 10:37:00 +0000 (14 12:37 +0200)
treea09f74d906bf24a5e6c8126b1189a9f4f994016f
parente0447a834d6170485ad925344223896d0d1d3810
tests/qtest/migration-test: Use g_autofree to avoid leaks on error paths

Coverity notices that several places in the migration-test code fail
to free memory in error-exit paths.  This is pretty unimportant in
test case code, but we can avoid having to manually free the memory
entirely by using g_autofree.

The places where Coverity spotted a leak were relating to early exits
not freeing 'uri' in test_precopy_unix(), do_test_validate_uuid(),
migrate_postcopy_prepare() and test_migrate_auto_converge().  This
patch converts all the string-allocation in the test code to
g_autofree for consistency.

Fixes: Coverity CID 1432313143231514323521432364
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20210506185819.9010-1-peter.maydell@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/qtest/migration-test.c