debian/changelog | 7 +++++++ debian/local/xvfb-run | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-)
New commits: commit b0943284842f2ed71a41b5abae2d77fff7c85baf Author: Sven Joachim <[email protected]> Date: Sat Jul 22 17:01:32 2017 +0200 xvfb-run: Don't mix stderr and stdout when running the program There does not seem to be a good reason for this, and it prevents the user from redirecting the program's output without having it intermixed with diagnostics. diff --git a/debian/changelog b/debian/changelog index 4aa0758..d01bff7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xorg-server (2:1.19.3-3) UNRELEASED; urgency=medium + + * xvfb-run: Do not redirect stderr to stdout when running the program + (Closes: #868876, LP: #1059947). + + -- Sven Joachim <[email protected]> Sat, 22 Jul 2017 16:55:40 +0200 + xorg-server (2:1.19.3-2) unstable; urgency=high * CVE-2017-10972: information leak out of the X server due to an diff --git a/debian/local/xvfb-run b/debian/local/xvfb-run index e7920e7..b92e467 100644 --- a/debian/local/xvfb-run +++ b/debian/local/xvfb-run @@ -180,7 +180,7 @@ done # Start the command and save its exit status. set +e -DISPLAY=:$SERVERNUM XAUTHORITY=$AUTHFILE "$@" 2>&1 +DISPLAY=:$SERVERNUM XAUTHORITY=$AUTHFILE "$@" RETVAL=$? set -e

