]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
perf tools: Normalize sq_quote_argv() error reporting
authorArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 14 Oct 2016 20:57:11 +0000 (17:57 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 24 Oct 2016 14:07:44 +0000 (11:07 -0300)
It already returns whatever strbuf_(grow|addch)() returns in case of
failure, so just return -ENOSPC in the only case where it was die()ing.
When it returns, its only caller will call die() anyway, so no need to
be so eager, die later.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-as05b7mbogprlwi8iarwns8e@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/quote.c

index 639d1da2f9786dee3b9e535724b5f1beaed3edda..293534c1a474352486df78087a4d452bcb96fe20 100644 (file)
@@ -54,7 +54,7 @@ int sq_quote_argv(struct strbuf *dst, const char** argv, size_t maxlen)
                        break;
                ret = sq_quote_buf(dst, argv[i]);
                if (maxlen && dst->len > maxlen)
-                       die("Too many or long arguments");
+                       return -ENOSPC;
        }
        return ret;
 }