Do not use a random string as if it is a format string for printf
when showing it literally; instead feed it to '%s' format.

Reported-by: Asheesh Laroia <asheesh@asheesh.org>
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
David Aguilar 2013-02-09 17:21:25 -08:00 коммит произвёл Junio C Hamano
Родитель 950b5680bd
Коммит d272c8497c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -30,5 +30,5 @@ create_empty_file () {
empty_file="${TMPDIR:-/tmp}/git-difftool-p4merge-empty-file.$$"
>"$empty_file"
printf "$empty_file"
printf "%s" "$empty_file"
}