]> git.ipfire.org Git - thirdparty/git.git/commit - pager.c
pager: do not leak "GIT_PAGER_IN_USE" to the pager
authorJunio C Hamano <gitster@pobox.com>
Fri, 3 Jul 2015 17:18:45 +0000 (10:18 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 4 Jul 2015 01:07:21 +0000 (18:07 -0700)
commit124b51909dab82151dff8ae8fd3a588a8846c7ac
tree40c6a63fc39fbbae6d34a786691fc1863a813144
parenta915459097b72da9cc058172a54029352b684b0f
pager: do not leak "GIT_PAGER_IN_USE" to the pager

Since 2e6c012e (setup_pager: set GIT_PAGER_IN_USE, 2011-08-17), we
export GIT_PAGER_IN_USE so that a process that becomes the upstream
of the spawned pager can still tell that we have spawned the pager
and decide to do colored output even when its output no longer goes
to a terminal (i.e. isatty(1)).

But we forgot to clear it from the enviornment of the spawned pager.

This is not a problem in a sane world, but if you have a handful of
thousands Git users in your organization, somebody is bound to do
strange things, e.g. typing "!<ENTER>" instead of 'q' to get control
back from $LESS.  GIT_PAGER_IN_USE is still set in that subshell
spawned by "less", and all sorts of interesting things starts
happening, e.g. "git diff | cat" starts coloring its output.

We can clear the environment variable in the half of the fork that
runs the pager to avoid the confusion.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
pager.c