summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/spawn.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-02-13 02:52:41 +0000
committerChristopher Faylor <me@cgf.cx>2003-02-13 02:52:41 +0000
commit7a44ba059bef3cea74e2c2005e9c781592840e8e (patch)
tree9b12a6f39a9f937a95c7aad833adeda78330000f /winsup/cygwin/spawn.cc
parent4cf24d14427f7f2ebd25a02ff869ec89dade5eae (diff)
downloadcygnal-7a44ba059bef3cea74e2c2005e9c781592840e8e.tar.gz
cygnal-7a44ba059bef3cea74e2c2005e9c781592840e8e.tar.bz2
cygnal-7a44ba059bef3cea74e2c2005e9c781592840e8e.zip
* spawn.cc (linebuf::~linebuf): Resurrect commented out (for debugging?) code.
Diffstat (limited to 'winsup/cygwin/spawn.cc')
-rw-r--r--winsup/cygwin/spawn.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc
index 9b0b4a999..f6863e88d 100644
--- a/winsup/cygwin/spawn.cc
+++ b/winsup/cygwin/spawn.cc
@@ -211,7 +211,7 @@ class linebuf
char *buf;
size_t alloced;
linebuf () : ix (0), buf (NULL), alloced (0) {}
- ~linebuf () {/* if (buf) free (buf);*/}
+ ~linebuf () {if (buf) free (buf);}
void add (const char *what, int len);
void add (const char *what) {add (what, strlen (what));}
void prepend (const char *what, int len);