mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
test_driver: Don't leak @group_name
In testDomainSetBlockIoTune() the info.group_name is strdup()-ed and just after the whole @info structure is passed to virDomainDiskSetBlockIOTune() the @group_name member is set to NULL. This creates a memleak, because virDomainDiskSetBlockIOTune() creates its own copy of the string. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
parent
d955cbd3a1
commit
726b9616b2
@ -4027,7 +4027,6 @@ testDomainSetBlockIoTune(virDomainPtr dom,
|
||||
#undef TEST_BLOCK_IOTUNE_MAX_CHECK
|
||||
|
||||
virDomainDiskSetBlockIOTune(conf_disk, &info);
|
||||
info.group_name = NULL;
|
||||
|
||||
ret = 0;
|
||||
cleanup:
|
||||
|
Loading…
Reference in New Issue
Block a user