mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
* src/lxc_conf.c: patch from Dave Leskovec fixing an freed memory
access I introduced yesterday Daniel
This commit is contained in:
parent
c7d7aa1cd1
commit
c2b690f1bd
@ -1,3 +1,8 @@
|
||||
Tue Apr 1 15:00:03 CEST 2008 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* src/lxc_conf.c: patch from Dave Leskovec fixing an freed memory
|
||||
access I introduced yesterday
|
||||
|
||||
Mon Mar 31 16:35:47 CEST 2008 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* src/hash.c src/internal.h src/virterror.c: remove dandling
|
||||
|
@ -810,8 +810,8 @@ void lxcFreeVMs(lxc_vm_t *vms)
|
||||
lxc_vm_t *nextVm;
|
||||
|
||||
while (curVm) {
|
||||
lxcFreeVM(curVm);
|
||||
nextVm = curVm->next;
|
||||
lxcFreeVM(curVm);
|
||||
curVm = nextVm;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user