git: f1f7f31366e5 - main - cmp: initialize limit to avoid stack garbage limits
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 21 Oct 2021 16:31:07 UTC
The branch main has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=f1f7f31366e5830f4f5b96c6394a0b91475744f4
commit f1f7f31366e5830f4f5b96c6394a0b91475744f4
Author: Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2021-10-21 16:30:55 +0000
Commit: Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2021-10-21 16:30:55 +0000
cmp: initialize limit to avoid stack garbage limits
Pointy hat: kevans
Fixes: 4e380e847460 ("cmp: add -n, --bytes to limit number of bytes [...]")
Sponsored by: Klara, Inc.
---
usr.bin/cmp/cmp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.bin/cmp/cmp.c b/usr.bin/cmp/cmp.c
index 98ae96c73375..83ea7ae7eee0 100644
--- a/usr.bin/cmp/cmp.c
+++ b/usr.bin/cmp/cmp.c
@@ -105,7 +105,7 @@ main(int argc, char *argv[])
bool special;
const char *file1, *file2;
- skip1 = skip2 = 0;
+ limit = skip1 = skip2 = 0;
oflag = O_RDONLY;
while ((ch = getopt_long(argc, argv, "+bhi:ln:sxz", long_opts, NULL)) != -1)
switch (ch) {