virDomainVcpuPinDefCopy when the control flow reaches out of memory
cleanup code, the flow would end in a infinite loop as the loop variable
wasn't decremented.
Also a dereference of NULL pointers was possible if allocation of the
Vcpu pinning definiton structure failed.
virDomainVcpuPinDefCopy(virDomainVcpuPinDefPtr *src, int nvcpupin)
{
int i = 0;
- virDomainVcpuPinDefPtr *ret;
+ virDomainVcpuPinDefPtr *ret = NULL;
if (VIR_ALLOC_N(ret, nvcpupin) < 0) {
goto no_memory;
return ret;
no_memory:
- while (i >= 0) {
- VIR_FREE(ret[i]->cpumask);
- VIR_FREE(ret[i]);
+ if (ret) {
+ for ( ; i >= 0; --i) {
+ if (ret[i]) {
+ VIR_FREE(ret[i]->cpumask);
+ VIR_FREE(ret[i]);
+ }
+ }
+ VIR_FREE(ret);
}
- VIR_FREE(ret);
virReportOOMError();
return NULL;