* spawn.cc (linebuf::~linebuf): Resurrect commented out (for debugging?) code.

This commit is contained in:
Christopher Faylor
2003-02-13 02:52:41 +00:00
parent 4cf24d1442
commit 7a44ba059b
4 changed files with 10 additions and 3 deletions

View File

@@ -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);