cwFileSystem.cpp : Fixed but in exapndPath() that rejected paths with spaces.

This commit is contained in:
kevin 2020-10-04 10:48:50 -04:00
parent 49d84eeb2e
commit 1232c3e36e

View File

@ -4,6 +4,7 @@
#include "cwFileSys.h" #include "cwFileSys.h"
#include "cwCommonImpl.h" #include "cwCommonImpl.h"
#include "cwMem.h" #include "cwMem.h"
#include "cwString.h"
#ifdef OS_LINUX #ifdef OS_LINUX
#include <libgen.h> // basename() dirname() #include <libgen.h> // basename() dirname()
@ -242,16 +243,19 @@ char* cw::filesys::expandPath( const char* dir )
goto errLabel; goto errLabel;
} }
if( res.we_wordc > 1 ) switch( res.we_wordc )
{ {
rc = cwLogError(kOpFailRC,"Unexpected word expansion count: %i.", res.we_wordc ); case 0:
goto errLabel; newDir = str::dupl(dir);
} break;
if( res.we_wordc == 1 ) case 1:
newDir = mem::duplStr(res.we_wordv[0]); newDir = str::dupl(res.we_wordv[0]);
else break;
newDir = mem::duplStr(dir);
default:
newDir = str::join(" ", (const char**)res.we_wordv, res.we_wordc );
}
errLabel: errLabel:
if( rc != kOkRC ) if( rc != kOkRC )