From 5ebf59ff5852dd4f37d99ab4e49fef1c579d6665 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 18 Nov 2014 18:05:20 +0100 Subject: btrfs-progs: use proper size for argv0 substitution Make run from a long base path will overflow the argv0 buffer during tests. Otherwise, this would happen for all the standalone binaries that use set_argv0. Original report: https://bbs.archlinux.org/viewtopic.php?id=189861 Reported-by: WorMzy Tykashi Signed-off-by: David Sterba --- utils.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'utils.c') diff --git a/utils.c b/utils.c index 4b3bace4..2a924161 100644 --- a/utils.c +++ b/utils.c @@ -66,7 +66,8 @@ void fixup_argv0(char **argv, const char *token) void set_argv0(char **argv) { - sprintf(argv0_buf, "%s", argv[0]); + strncpy(argv0_buf, argv[0], sizeof(argv0_buf)); + argv0_buf[sizeof(argv0_buf) - 1] = 0; } int check_argc_exact(int nargs, int expected) -- cgit v1.2.3