* src/lxc_conf.c: patch from Dave Leskovec fixing an freed memory

access I introduced yesterday
Daniel
This commit is contained in:
Daniel Veillard 2008-04-01 13:01:01 +00:00
parent c7d7aa1cd1
commit c2b690f1bd
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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;
}
}