[libvirt] [PATCH] cpu conf: Use virBufferFreeAndReset instead of virBufferContentAndReset and VIR_FREE

Daniel Veillard veillard at redhat.com
Thu Feb 4 17:03:10 UTC 2010


On Thu, Feb 04, 2010 at 04:43:26PM +0100, Matthias Bolte wrote:
> ---
>  src/conf/cpu_conf.c |    4 +---
>  1 files changed, 1 insertions(+), 3 deletions(-)
> 
> diff --git a/src/conf/cpu_conf.c b/src/conf/cpu_conf.c
> index e7924c1..244d670 100644
> --- a/src/conf/cpu_conf.c
> +++ b/src/conf/cpu_conf.c
> @@ -249,7 +249,6 @@ virCPUDefFormat(virConnectPtr conn,
>                  int flags)
>  {
>      virBuffer buf = VIR_BUFFER_INITIALIZER;
> -    char *tmp;
>  
>      if (virCPUDefFormatBuf(conn, &buf, def, indent, flags) < 0)
>          goto cleanup;
> @@ -262,8 +261,7 @@ virCPUDefFormat(virConnectPtr conn,
>  no_memory:
>      virReportOOMError(conn);
>  cleanup:
> -    tmp = virBufferContentAndReset(&buf);
> -    VIR_FREE(tmp);
> +    virBufferFreeAndReset(&buf);
>      return NULL;
>  }

  ACK,

Daniel

-- 
Daniel Veillard      | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
daniel at veillard.com  | Rpmfind RPM search engine http://rpmfind.net/
http://veillard.com/ | virtualization library  http://libvirt.org/




More information about the libvir-list mailing list