summaryrefslogtreecommitdiff
path: root/winsup/cygwin/spawn.cc
diff options
context:
space:
mode:
authorChristopher Faylor <cgf@redhat.com>2003-02-13 03:14:06 +0000
committerChristopher Faylor <cgf@redhat.com>2003-02-13 03:14:06 +0000
commit335bdeb9375bfba164a07467a0ce6e9341a89a55 (patch)
tree78aa45fb5c156beeee092324cc852673afcb2cd6 /winsup/cygwin/spawn.cc
parentfcd81fa62f460d3268aa6a2a8e336f983c46f79e (diff)
downloadgdb-335bdeb9375bfba164a07467a0ce6e9341a89a55.tar.gz
merge from trunk
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 9b0b4a999f7..f6863e88d24 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);