Re: [PATCH] tools lib traceevent: remove redundant check fromprocess_dynamic_array

From: Namhyung Kim
Date: Fri Dec 21 2012 - 07:58:33 EST


On Thu, Dec 20, 2012 at 02:11:13PM -0500, Sasha Levin wrote:
> We check twice that 'field' is non-NULL, no need to do that.
>
> Signed-off-by: Sasha Levin <sasha.levin@xxxxxxxxxx>
> ---
> tools/lib/traceevent/event-parse.c | 5 -----
> 1 file changed, 5 deletions(-)
>
> diff --git a/tools/lib/traceevent/event-parse.c b/tools/lib/traceevent/event-parse.c
> index 5a824e3..f7dc053 100644
> --- a/tools/lib/traceevent/event-parse.c
> +++ b/tools/lib/traceevent/event-parse.c
> @@ -2481,11 +2481,6 @@ process_dynamic_array(struct event_format *event, struct print_arg *arg, char **
>
> free_token(token);
> arg = alloc_arg();
> - if (!field) {

I think it should be 'if (!arg)' instead.

Thanks,
Namhyung


> - do_warning("%s: not enough memory!", __func__);
> - *tok = NULL;
> - return EVENT_ERROR;
> - }
>
> type = process_arg(event, arg, &token);
> if (type == EVENT_ERROR)
> --
> 1.8.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/