Re: [PATCH 01/11] perf, tools: Factor out scale conversion code

From: Jiri Olsa
Date: Sun Jan 08 2017 - 13:58:20 EST


On Tue, Jan 03, 2017 at 07:08:23AM -0800, Andi Kleen wrote:

SNIP

> - goto error;
> -
> - if (scale[sret - 1] == '\n')
> - scale[sret - 1] = '\0';
> - else
> - scale[sret] = '\0';
> + int ret = 0;
>
> /*
> * save current locale
> @@ -133,8 +111,8 @@ static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *
> */
> lc = strdup(lc);
> if (!lc) {
> - ret = -ENOMEM;
> - goto error;
> + ret = -1;
> + goto out;

not sure why you changed the -ENOMEM to -1 ;-) but it's ok anyway

Acked-by: Jiri Olsa <jolsa@xxxxxxxxxx>

thanks,
jirka