util: Remove unnecessary initialization

VIR_ALLOC will already initialize, so no need to do it again.
This commit is contained in:
John Ferlan 2018-01-12 10:32:41 -05:00
parent b0fc6a69d0
commit 39b933f197

View File

@ -597,8 +597,6 @@ virSysinfoReadS390(void)
goto no_memory;
}
ret->nprocessor = 0;
ret->processor = NULL;
if (virSysinfoParseS390Processor(outbuf, ret) < 0)
goto no_memory;