diff options
author | Christopher Faylor <me@cgf.cx> | 2003-02-13 02:52:41 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-02-13 02:52:41 +0000 |
commit | 7a44ba059bef3cea74e2c2005e9c781592840e8e (patch) | |
tree | 9b12a6f39a9f937a95c7aad833adeda78330000f /winsup/cygwin/spawn.cc | |
parent | 4cf24d14427f7f2ebd25a02ff869ec89dade5eae (diff) | |
download | cygnal-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.cc | 2 |
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); |