[Spice-devel] [spice PATCH v2 3/6] red_get_image_data_flat: allocate mem after sanity check

Frediano Ziglio fziglio at redhat.com
Tue Dec 6 16:40:38 UTC 2016


> 
> This patch prevents possible memory leak.
> 
> Found by coverity.
> 
> Signed-off-by: Uri Lublin <uril at redhat.com>
> ---
>  server/red-parse-qxl.c | 11 +++++++----
>  1 file changed, 7 insertions(+), 4 deletions(-)
> 
> diff --git a/server/red-parse-qxl.c b/server/red-parse-qxl.c
> index 11da3a1..89cb120 100644
> --- a/server/red-parse-qxl.c
> +++ b/server/red-parse-qxl.c
> @@ -371,13 +371,16 @@ static SpiceChunks
> *red_get_image_data_flat(RedMemSlotInfo *slots, int group_id,
>  {
>      SpiceChunks *data;
>      int error;
> +    unsigned long bitmap_virt;
> +
> +    bitmap_virt = memslot_get_virt(slots, addr, size, group_id, &error);
> +    if (error) {
> +        return 0;
> +    }
>  
>      data = spice_chunks_new(1);
>      data->data_size      = size;
> -    data->chunk[0].data  = (void*)memslot_get_virt(slots, addr, size,
> group_id, &error);
> -    if (error) {
> -        return 0;
> -    }
> +    data->chunk[0].data  = (void*)bitmap_virt;
>      data->chunk[0].len   = size;
>      return data;
>  }

Would still prefer LLP64 compatibility but all memslot is not either.
Maybe a follow up.

Acked-by: Frediano Ziglio <fziglio at redhat.com>

Frediano


More information about the Spice-devel mailing list