diff options
author | KWSys Robot <kwrobot@kitware.com> | 2013-02-05 13:37:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-02-07 13:34:52 (GMT) |
commit | 9d66f74335a09019644c7b82af0860da439fce87 (patch) | |
tree | 5d67b385035a219d25f64e2cc7909527ef3d1a77 | |
parent | 23ae48412093e4acbd5270536aace226d5869679 (diff) | |
download | CMake-9d66f74335a09019644c7b82af0860da439fce87.zip CMake-9d66f74335a09019644c7b82af0860da439fce87.tar.gz CMake-9d66f74335a09019644c7b82af0860da439fce87.tar.bz2 |
KWSys 2013-02-05 (5c34ed2e)
Extract upstream KWSys using the following shell commands.
$ git archive --prefix=upstream-kwsys/ 5c34ed2e | tar x
$ git shortlog --no-merges --abbrev=8 --format='%h %s' 5b0d1bd9..5c34ed2e
Brad King (1):
5c34ed2e SystemTools: Do not abort with no current directory
Change-Id: Id054017eac2bf10c71ca721df48298cdff2bea82
-rw-r--r-- | SystemTools.cxx | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/SystemTools.cxx b/SystemTools.cxx index 881c49a..22bf193 100644 --- a/SystemTools.cxx +++ b/SystemTools.cxx @@ -196,18 +196,16 @@ inline int Rmdir(const char* dir) } inline const char* Getcwd(char* buf, unsigned int len) { - const char* ret = _getcwd(buf, len); - if(!ret) + if(const char* ret = _getcwd(buf, len)) { - fprintf(stderr, "No current working directory.\n"); - abort(); - } - // make sure the drive letter is capital - if(strlen(buf) > 1 && buf[1] == ':') - { - buf[0] = toupper(buf[0]); + // make sure the drive letter is capital + if(strlen(buf) > 1 && buf[1] == ':') + { + buf[0] = toupper(buf[0]); + } + return ret; } - return ret; + return 0; } inline int Chdir(const char* dir) { @@ -245,13 +243,7 @@ inline int Rmdir(const char* dir) } inline const char* Getcwd(char* buf, unsigned int len) { - const char* ret = getcwd(buf, len); - if(!ret) - { - fprintf(stderr, "No current working directory\n"); - abort(); - } - return ret; + return getcwd(buf, len); } inline int Chdir(const char* dir) @@ -3089,7 +3081,7 @@ kwsys_stl::string SystemTools::CollapseFullPath(const char* in_path, } else { - // ?? + base_components.push_back(""); } } |