lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20181206170947.GL19069@kernel.org>
Date:   Thu, 6 Dec 2018 14:09:47 -0300
From:   Arnaldo Carvalho de Melo <acme@...nel.org>
To:     Sihyeon Jang <uneedsihyeon@...il.com>
Cc:     linux-kernel@...r.kernel.org, Jiri Olsa <jolsa@...nel.org>,
        Namhyung Kim <namhyung@...nel.org>
Subject: Re: [PATCH] perf util config : Modify size factor of snprintf

Em Sun, Dec 02, 2018 at 12:46:03AM +0900, Sihyeon Jang escreveu:
> According to definition of snprintf, it gets size factor including null('\0') byte.
> So '-1' is not neccessary. Also it will be helpful unfied style with other cases. (eg. builtin-script.c)

Thanks, applied.

- Arnaldo
 
> Cc: Jiri Olsa <jolsa@...nel.org>
> Cc: Namhyung Kim <namhyung@...nel.org>
> Signed-off-by: Sihyeon Jang <uneedsihyeon@...il.com>
> ---
>  tools/perf/util/config.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/perf/util/config.c b/tools/perf/util/config.c
> index 5ac157056cdf..bce980fa9f41 100644
> --- a/tools/perf/util/config.c
> +++ b/tools/perf/util/config.c
> @@ -811,14 +811,14 @@ int config_error_nonbool(const char *var)
>  void set_buildid_dir(const char *dir)
>  {
>  	if (dir)
> -		scnprintf(buildid_dir, MAXPATHLEN-1, "%s", dir);
> +		scnprintf(buildid_dir, MAXPATHLEN, "%s", dir);
>  
>  	/* default to $HOME/.debug */
>  	if (buildid_dir[0] == '\0') {
>  		char *home = getenv("HOME");
>  
>  		if (home) {
> -			snprintf(buildid_dir, MAXPATHLEN-1, "%s/%s",
> +			snprintf(buildid_dir, MAXPATHLEN, "%s/%s",
>  				 home, DEBUG_CACHE_DIR);
>  		} else {
>  			strncpy(buildid_dir, DEBUG_CACHE_DIR, MAXPATHLEN-1);
> -- 
> 2.17.1

-- 

- Arnaldo

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ