mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
tests/qtest/migration-test: Fix unlink error and memory leaks
When running the migration test compiled with Clang from Fedora 37 and sanitizers enabled, there is an error complaining about unlink(): ../tests/qtest/migration-test.c:1072:12: runtime error: null pointer passed as argument 1, which is declared to never be null /usr/include/unistd.h:858:48: note: nonnull attribute specified here SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior ../tests/qtest/migration-test.c:1072:12 in (test program exited with status code 1) TAP parsing error: Too few tests run (expected 33, got 20) The data->clientcert and data->clientkey pointers can indeed be unset in some tests, so we have to check them before calling unlink() with those. While we're at it, I also noticed that the code is only freeing some but not all of the allocated strings in this function, and indeed, valgrind is also complaining about memory leaks here. So let's call g_free() on all allocated strings to avoid leaking memory here. Message-Id: <20221125083054.117504-1-thuth@redhat.com> Tested-by: Bin Meng <bmeng@tinylab.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
c4ffd91aba
commit
0f0a9e4e5c
@ -1066,15 +1066,27 @@ test_migrate_tls_x509_finish(QTestState *from,
|
||||
TestMigrateTLSX509Data *data = opaque;
|
||||
|
||||
test_tls_cleanup(data->keyfile);
|
||||
unlink(data->cacert);
|
||||
unlink(data->servercert);
|
||||
unlink(data->serverkey);
|
||||
unlink(data->clientcert);
|
||||
unlink(data->clientkey);
|
||||
rmdir(data->workdir);
|
||||
|
||||
g_free(data->workdir);
|
||||
g_free(data->keyfile);
|
||||
|
||||
unlink(data->cacert);
|
||||
g_free(data->cacert);
|
||||
unlink(data->servercert);
|
||||
g_free(data->servercert);
|
||||
unlink(data->serverkey);
|
||||
g_free(data->serverkey);
|
||||
|
||||
if (data->clientcert) {
|
||||
unlink(data->clientcert);
|
||||
g_free(data->clientcert);
|
||||
}
|
||||
if (data->clientkey) {
|
||||
unlink(data->clientkey);
|
||||
g_free(data->clientkey);
|
||||
}
|
||||
|
||||
rmdir(data->workdir);
|
||||
g_free(data->workdir);
|
||||
|
||||
g_free(data);
|
||||
}
|
||||
#endif /* CONFIG_TASN1 */
|
||||
|
Loading…
Reference in New Issue
Block a user