qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [RFC PATCH 04/20] Make QEMUFile buf expandable, and int


From: Stefan Hajnoczi
Subject: [Qemu-devel] Re: [RFC PATCH 04/20] Make QEMUFile buf expandable, and introduce qemu_realloc_buffer() and qemu_clear_buffer().
Date: Wed, 21 Apr 2010 09:03:43 +0100

On Wed, Apr 21, 2010 at 6:57 AM, Yoshiaki Tamura
<address@hidden> wrote:
> @@ -454,6 +458,25 @@ void qemu_fflush(QEMUFile *f)
>     }
>  }
>
> +void *qemu_realloc_buffer(QEMUFile *f, int size)
> +{
> +    f->buf_max_size = size;
> +
> +    f->buf = qemu_realloc(f->buf, f->buf_max_size);
> +    if (f->buf == NULL) {
> +        fprintf(stderr, "qemu file buffer realloc failed\n");
> +        exit(1);
> +    }
> +
> +    return f->buf;
> +}
> +

qemu_realloc() will abort() if there was not enough memory to realloc.
 Just like qemu_malloc(), you don't need to check for NULL.

Stefan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]