Whamcloud - gitweb
LU-14093 utils: fix format-overflow warning 11/43711/3
authorDominique Martinet <asmadeus@codewreck.org>
Sat, 15 May 2021 22:32:47 +0000 (07:32 +0900)
committerOleg Drokin <green@whamcloud.com>
Mon, 14 Jun 2021 16:43:50 +0000 (16:43 +0000)
commita0fe9be254b944f5b005dd4b36c414827bcb40df
tree2f0d2378c65b29b6e07d145e242cf1a8365aa7d8
parent5d8f6742e65d588d907b77ffc6fcdb2552d855b9
LU-14093 utils: fix format-overflow warning

Fix the following warning on gcc11 by making numbuf big enough to fit
format content.

lfs.c: In function ‘print_quota’:
lfs.c:7719:48: error: ‘sprintf’ may write a terminating nul past the end of the destination [-Werror=format-overflow=]
 7719 |                         sprintf(numbuf[0], "%s*", strbuf);
      |                                                ^
lfs.c:7719:25: note: ‘sprintf’ output between 2 and 33 bytes into a destination of size 32
 7719 |                         sprintf(numbuf[0], "%s*", strbuf);
      |                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Test-parameters: trivial

Change-Id: I021e6ffff2e1405eadbe689f718674af4d4d6376
Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
Reviewed-on: https://review.whamcloud.com/43711
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
Reviewed-by: Neil Brown <neilb@suse.de>
lustre/utils/lfs.c