diff options
author | Christopher Faylor <me@cgf.cx> | 2009-08-01 19:52:46 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2009-08-01 19:52:46 +0000 |
commit | fafbf75509c175bc5c80e4b761333fa85aaccca0 (patch) | |
tree | 93e93c1d893e73e108d5c0648d59fc321f5f57d6 /winsup/cygwin/spawn.cc | |
parent | 8cc84a8ce35aa56528f24532e8a1095199f80c11 (diff) | |
download | cygnal-fafbf75509c175bc5c80e4b761333fa85aaccca0.tar.gz cygnal-fafbf75509c175bc5c80e4b761333fa85aaccca0.tar.bz2 cygnal-fafbf75509c175bc5c80e4b761333fa85aaccca0.zip |
* cygheap_malloc.h: New file.
* cygheap.h: Remove stuff now included in cygheap_malloc.h and include that
file. Make cygheap_init a standard c++ function. Remove unneeded child_info
declaration.
* path.h: Include cygheap_malloc.h. Remove extra cstrdup declaration.
(path_conv): Reorganize to group variables together.
(path_conv::path): Make const char *.
(path_conv::known_suffix): Ditto.
(path_conv::normalized_path): Ditto.
(path_conv::path_conv): Reorganize initializers to reflect new element
ordering.
(path_conv::get_win32): Change return value to const char *.
(path_conv::set_path): Move back here from spawn.cc.
(parh_conv::modifiable_path): New function.
* path.cc (path_conv::add_ext_from_sym): Accommodate const'ness of
known_suffixes.
(path_conv::set_normalized_path): Ditto for normalized_path.
(path_conv::check): Use modifiable_path whereever we need to modify the path
element. Use set_path to set the path.
(path_conv::~path_conv): Accommodate new const'ness.
* spawn.cc (perhaps_suffix): Declare ext as const since that's what is being
returned.
(path_conv::set_path): Move back to path.h.
* winf.f (linebuf): Perform minor cleanup.
(linebuf::fromargv): Change second parameter to const.
* winf.cc (linebuf::fromargv): Ditto.
Diffstat (limited to 'winsup/cygwin/spawn.cc')
-rw-r--r-- | winsup/cygwin/spawn.cc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc index 009e53d17..4aafe6bae 100644 --- a/winsup/cygwin/spawn.cc +++ b/winsup/cygwin/spawn.cc @@ -61,7 +61,7 @@ child_info_spawn *chExeced; static const char * perhaps_suffix (const char *prog, path_conv& buf, int& err, unsigned opt) { - char *ext; + const char *ext; err = 0; debug_printf ("prog '%s'", prog); @@ -87,14 +87,6 @@ perhaps_suffix (const char *prog, path_conv& buf, int& err, unsigned opt) return ext; } -inline char * -path_conv::set_path (const char *p) -{ - if (path) - cfree (path); - return path = cstrdup (p); -} - /* Find an executable name, possibly by appending known executable suffixes to it. The win32-translated name is placed in 'buf'. Any found suffix is returned in known_suffix. |