diff options
author | Christopher Faylor <me@cgf.cx> | 2004-02-17 20:03:01 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-02-17 20:03:01 +0000 |
commit | 720c33ae4c9fb2fe10268e123d5b34a5042170e1 (patch) | |
tree | 6bf6a681bbfeee61d2da5170d94cbbaf3a80ba05 /winsup/cygwin/path.h | |
parent | 88e584bf43ec8d63729f59c2e21e8dd4001e7e41 (diff) | |
download | newlib-720c33ae4c9fb2fe10268e123d5b34a5042170e1.zip newlib-720c33ae4c9fb2fe10268e123d5b34a5042170e1.tar.gz newlib-720c33ae4c9fb2fe10268e123d5b34a5042170e1.tar.bz2 |
* Makefile.in (clean): Clean libserver, too.
* fhandler.cc (fhandler_base::~fhandler_base): Remove path_conv cleanup.
* syscalls.cc (chroot): Ditto.
* path.cc (path_conv::~path_conv): Define new destructor.
(conv_path_list_buf_size): Remove explicit path_conv cleanup.
* path.h (path_conv::~path_conv): Declare new destructor.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r-- | winsup/cygwin/path.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index 92cd2b8..56eb0ca 100644 --- a/winsup/cygwin/path.h +++ b/winsup/cygwin/path.h @@ -172,6 +172,7 @@ class path_conv known_suffix (NULL), error (0), normalized_path (NULL) {path[0] = '\0';} + ~path_conv (); inline char *get_win32 () { return path; } operator char *() {return path;} operator const char *() {return path;} |