On Tue, 22 Jan 2013 11:08:05 +0100 Markus Armbruster <[email protected]> wrote:
> Note that we already free with g_free(). > > Signed-off-by: Markus Armbruster <[email protected]> > Reviewed-by: Eric Blake <[email protected]> Reviewed-by: Luiz Capitulino <[email protected]> > --- > 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++; > } >
