qemu-trivial
[Top][All Lists]
Advanced

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

Re: [Qemu-trivial] [Qemu-devel] [PATCH 51/88] hw/timer: use g_new() fami


From: xiaoqiang zhao
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH 51/88] hw/timer: use g_new() family of functions
Date: Sat, 7 Oct 2017 08:46:50 +0800

> 在 2017年10月7日,上午7:49,Philippe Mathieu-Daudé <address@hidden> 写道:
> 
> From: Marc-André Lureau <address@hidden>
> 
> Signed-off-by: Marc-André Lureau <address@hidden>
> ---
> hw/timer/slavio_timer.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/timer/slavio_timer.c b/hw/timer/slavio_timer.c
> index a8cc9c0148..6d0282a788 100644
> --- a/hw/timer/slavio_timer.c
> +++ b/hw/timer/slavio_timer.c
> @@ -385,7 +385,7 @@ static void slavio_timer_init(Object *obj)
>       uint64_t size;
>       char timer_name[20];
> 
> -        tc = g_malloc0(sizeof(TimerContext));
> +        tc = g_new0(TimerContext, 1);
>       tc->s = s;
>       tc->timer_index = i;
> 
> -- 
> 2.14.2

Reviewed-by: xiaoqiang zhao <address@hidden>




reply via email to

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