Use g_auto and remove the 'ret' variable, as well as the cleanup label.
Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
const char *errormsg,
unsigned int flag)
{
- char *error;
- virCommand *cmd = NULL;
- int ret = -1, exit;
+ g_autofree char *error = NULL;
+ g_autoptr(virCommand) cmd = NULL;
+ int exit;
cmd = virCommandNew(binary);
virCommandAddArgList(cmd, bus, device, NULL);
virCommandSetErrorBuffer(cmd, &error);
if (virCommandRun(cmd, &exit) < 0)
- goto cleanup;
+ return -1;
if (strstr(error, errormsg) == NULL)
*caps |= flag;
- ret = 0;
- cleanup:
- VIR_FREE(error);
- virCommandFree(cmd);
- return ret;
+ return 0;
}
static int