mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 21:34:54 +03:00
vircgroupv2devices: free BPF map when replacing with new one
This leaks the FD of BPF map which means it will not be freed. Signed-off-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
c2642c4889
commit
7d60846962
@ -311,6 +311,11 @@ virCgroupV2DevicesAttachProg(virCgroupPtr group,
|
||||
VIR_FORCE_CLOSE(group->unified.devices.progfd);
|
||||
}
|
||||
|
||||
if (group->unified.devices.mapfd > 0) {
|
||||
VIR_DEBUG("Closing existing map that was replaced by new one.");
|
||||
VIR_FORCE_CLOSE(group->unified.devices.mapfd);
|
||||
}
|
||||
|
||||
group->unified.devices.progfd = progfd;
|
||||
group->unified.devices.mapfd = mapfd;
|
||||
group->unified.devices.max = max;
|
||||
|
Loading…
Reference in New Issue
Block a user