* Only try to clear stdin if it is a tty, to avoid loop...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:02:30 +0000 (17:02 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:02:30 +0000 (17:02 +0000)
Author: mdz
Date: 2003-07-26 00:25:44 GMT
* Only try to clear stdin if it is a tty, to avoid looping if there is
lots of stuff (perhaps an infinite amount) to read (Closes: #192228)

apt-pkg/deb/dpkgpm.cc
debian/changelog

index ea64ef0..1548a47 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: dpkgpm.cc,v 1.26 2003/04/27 03:02:40 doogie Exp $
+// $Id: dpkgpm.cc,v 1.27 2003/07/26 00:25:44 mdz Exp $
 /* ######################################################################
 
    DPKG Package Manager - Provide an interface to dpkg
@@ -448,7 +448,7 @@ bool pkgDPkgPM::Go()
         if (chdir(_config->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
            _exit(100);
         
-        if (_config->FindB("DPkg::FlushSTDIN",true) == true)
+        if (_config->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO))
         {
            int Flags,dummy;
            if ((Flags = fcntl(STDIN_FILENO,F_GETFL,dummy)) < 0)
index 4352bdc..9c04f12 100644 (file)
@@ -23,8 +23,10 @@ apt (0.5.8) unstable; urgency=medium
     YnPrompt works correctly (Closes: #200953).  No other translations seem
     to have this problem
   * Regenerate POT file and sync .po files
+  * Only try to clear stdin if it is a tty, to avoid looping if there is
+    lots of stuff (perhaps an infinite amount) to read (Closes: #192228)
 
- --
+ -- Matt Zimmerman <mdz@debian.org>  Fri, 25 Jul 2003 20:21:53 -0400
 
 apt (0.5.7) unstable; urgency=low