mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
* src/xm_internal.c: fix a crash on vcpupin to inactive Xen domains,
as raised by Takahashi Tomohiro daniel
This commit is contained in:
parent
cab9eed62e
commit
14687aad81
@ -1,3 +1,8 @@
|
||||
Wed Apr 15 11:52:15 CEST 2009 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* src/xm_internal.c: fix a crash on vcpupin to inactive Xen domains,
|
||||
as raised by Takahashi Tomohiro
|
||||
|
||||
Wed Apr 15 11:33:33 CEST 2009 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* src/lxc_driver.c: adds the getHostname method to the lxc driver
|
||||
|
@ -1624,7 +1624,7 @@ int xenXMDomainPinVcpu(virDomainPtr domain,
|
||||
const char *filename;
|
||||
xenXMConfCachePtr entry;
|
||||
virBuffer mapbuf = VIR_BUFFER_INITIALIZER;
|
||||
char *mapstr = NULL;
|
||||
char *mapstr = NULL, *mapsave = NULL;
|
||||
int i, j, n, comma = 0;
|
||||
int ret = -1;
|
||||
char *cpuset = NULL;
|
||||
@ -1679,6 +1679,7 @@ int xenXMDomainPinVcpu(virDomainPtr domain,
|
||||
}
|
||||
|
||||
mapstr = virBufferContentAndReset(&mapbuf);
|
||||
mapsave = mapstr;
|
||||
|
||||
if (VIR_ALLOC_N(cpuset, maxcpu) < 0) {
|
||||
virReportOOMError(domain->conn);
|
||||
@ -1700,7 +1701,7 @@ int xenXMDomainPinVcpu(virDomainPtr domain,
|
||||
ret = 0;
|
||||
|
||||
cleanup:
|
||||
VIR_FREE(mapstr);
|
||||
VIR_FREE(mapsave);
|
||||
VIR_FREE(cpuset);
|
||||
xenUnifiedUnlock(priv);
|
||||
return (ret);
|
||||
|
Loading…
x
Reference in New Issue
Block a user