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.le...@oracle.com> > --- > 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 majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/