On Tue, 22 Jan 2013 11:08:05 +0100
Markus Armbruster <arm...@redhat.com> wrote:

> Note that we already free with g_free().
> 
> Signed-off-by: Markus Armbruster <arm...@redhat.com>
> Reviewed-by: Eric Blake <ebl...@redhat.com>

Reviewed-by: Luiz Capitulino <lcapitul...@redhat.com>

> ---
>  qapi/qmp-registry.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/qapi/qmp-registry.c b/qapi/qmp-registry.c
> index 70cdbca..28bbbe8 100644
> --- a/qapi/qmp-registry.c
> +++ b/qapi/qmp-registry.c
> @@ -92,7 +92,7 @@ char **qmp_get_command_list(void)
>      list_head = list = g_malloc0(count * sizeof(char *));
>  
>      QTAILQ_FOREACH(cmd, &qmp_commands, node) {
> -        *list = strdup(cmd->name);
> +        *list = g_strdup(cmd->name);
>          list++;
>      }
>  


Reply via email to