diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-04-25 13:29:03 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-04-25 13:29:03 +0900 |
commit | beed7e22fdc81ba325c4bfaadf84d23f5c697d93 (patch) | |
tree | 9f81c2ef32e4f0eab2883419c292513ef2772531 | |
parent | Merge branch 'cb/bash-completion-ls-files-processing' (diff) | |
parent | fsmonitor: fix incorrect buffer size when printing version number (diff) | |
download | tgif-beed7e22fdc81ba325c4bfaadf84d23f5c697d93.tar.xz |
Merge branch 'bp/fsmonitor-bufsize-fix'
Fix an unexploitable (because the oversized contents are not under
attacker's control) buffer overflow.
* bp/fsmonitor-bufsize-fix:
fsmonitor: fix incorrect buffer size when printing version number
-rw-r--r-- | fsmonitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fsmonitor.c b/fsmonitor.c index 6d7bcd5d0e..eb4e642256 100644 --- a/fsmonitor.c +++ b/fsmonitor.c @@ -104,7 +104,7 @@ static int query_fsmonitor(int version, uint64_t last_update, struct strbuf *que if (!(argv[0] = core_fsmonitor)) return -1; - snprintf(ver, sizeof(version), "%d", version); + snprintf(ver, sizeof(ver), "%d", version); snprintf(date, sizeof(date), "%" PRIuMAX, (uintmax_t)last_update); argv[1] = ver; argv[2] = date; |