From: Peter Krempa Date: Wed, 28 Aug 2013 12:56:21 +0000 (+0200) Subject: qemu_hotplug: Fix whitespace around addition in argument X-Git-Tag: CVE-2013-4292~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14da45c8e40efdbabb282c52c4d4590e3d3cca4c;p=thirdparty%2Flibvirt.git qemu_hotplug: Fix whitespace around addition in argument --- diff --git a/src/qemu/qemu_hotplug.c b/src/qemu/qemu_hotplug.c index a7256f357d..9c655fff1c 100644 --- a/src/qemu/qemu_hotplug.c +++ b/src/qemu/qemu_hotplug.c @@ -814,7 +814,7 @@ int qemuDomainAttachNetDevice(virConnectPtr conn, size_t i; /* preallocate new slot for device */ - if (VIR_REALLOC_N(vm->def->nets, vm->def->nnets+1) < 0) + if (VIR_REALLOC_N(vm->def->nets, vm->def->nnets + 1) < 0) goto cleanup; /* If appropriate, grab a physical device from the configured @@ -1136,7 +1136,7 @@ int qemuDomainAttachHostPciDevice(virQEMUDriverPtr driver, char *configfd_name = NULL; bool releaseaddr = false; - if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs+1) < 0) + if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0) return -1; if (qemuPrepareHostdevPCIDevices(driver, vm->def->name, vm->def->uuid,