libvirt/src/vmx
Ján Tomko 92a8e72f9d Use virBufferCheckError everywhere we report OOM error
Replace:
if (virBufferError(&buf)) {
    virBufferFreeAndReset(&buf);
    virReportOOMError();
    ...
}

with:
if (virBufferCheckError(&buf) < 0)
    ...

This should not be a functional change (unless some callers
misused the virBuffer APIs - a different error would be reported
then)
2014-07-03 10:48:14 +02:00
..
vmx.c Use virBufferCheckError everywhere we report OOM error 2014-07-03 10:48:14 +02:00
vmx.h Don't leave empty first line in C source files 2014-03-18 12:17:12 +01:00