lkml.org 
[lkml]   [2013]   [Jun]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH V3 05/15] perf tools: fix new_term() missing free on error path
    Date
    On the error path, newly allocated 'term' must be freed.

    Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
    Acked-by: Jiri Olsa <jolsa@redhat.com>
    ---
    tools/perf/util/parse-events.c | 1 +
    1 file changed, 1 insertion(+)

    diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c
    index d8dcb8d..995fc25 100644
    --- a/tools/perf/util/parse-events.c
    +++ b/tools/perf/util/parse-events.c
    @@ -1184,6 +1184,7 @@ static int new_term(struct parse_events_term **_term, int type_val,
    term->val.str = str;
    break;
    default:
    + free(term);
    return -EINVAL;
    }

    --
    1.7.11.7


    \
     
     \ /
      Last update: 2013-06-28 11:01    [W:4.270 / U:0.340 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site