mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
virhostcpu.c: modernize virHostCPUGetMicrocodeVersion()
Use g_autofree and remove the cleanup label. Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> Reviewed-by: Ján Tomko <jtomko@redhat.com> Signed-off-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
7ba4838a18
commit
97ac16baab
@ -1241,7 +1241,7 @@ virHostCPUGetKVMMaxVCPUs(void)
|
||||
unsigned int
|
||||
virHostCPUGetMicrocodeVersion(void)
|
||||
{
|
||||
char *outbuf = NULL;
|
||||
g_autofree char *outbuf = NULL;
|
||||
char *cur;
|
||||
unsigned int version = 0;
|
||||
|
||||
@ -1254,16 +1254,14 @@ virHostCPUGetMicrocodeVersion(void)
|
||||
/* Account for format 'microcode : XXXX'*/
|
||||
if (!(cur = strstr(outbuf, "microcode")) ||
|
||||
!(cur = strchr(cur, ':')))
|
||||
goto cleanup;
|
||||
return 0;
|
||||
cur++;
|
||||
|
||||
/* Linux places the microcode revision in a 32-bit integer, so
|
||||
* ui is fine for us too. */
|
||||
if (virStrToLong_ui(cur, &cur, 0, &version) < 0)
|
||||
goto cleanup;
|
||||
return 0;
|
||||
|
||||
cleanup:
|
||||
VIR_FREE(outbuf);
|
||||
return version;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user