/* Finally print all children */
virBufferAddLit(indent, " ");
+ if (virBufferError(indent))
+ goto cleanup;
for (i = 0 ; i < num_devices ; i++) {
const char *parent = (lookup)(i, true, opaque);
false, indent) < 0)
goto cleanup;
}
- virBufferTrim(indent, " ", -1);
+ if (virBufferTrim(indent, " ", -1) < 0)
+ goto cleanup;
/* If there was no child device, and we're the last in
* a list of devices, then print another blank line */
if (nextlastdev == -1 && devid == lastdev)
vshPrint(ctl, "%s\n", virBufferCurrentContent(indent));
- if (!root)
- virBufferTrim(indent, NULL, 2);
+ if (!root) {
+ if (virBufferTrim(indent, NULL, 2) < 0)
+ goto cleanup;
+ }
ret = 0;
cleanup:
return ret;