dirname should not return an empty string

This commit is contained in:
Antonio SJ Musumeci 2020-12-18 15:29:36 -05:00
parent 861edff49a
commit f50812a9ce
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ namespace fs
dir_has_defaults(const std::string &fullpath_)
{
int rv;
std::string dirpath;
std::string dirpath;
dirpath = fs::path::dirname(fullpath_);

View File

@ -73,7 +73,7 @@ namespace fs
return 0;
dirname = fs::path::dirname(relative_);
if(!dirname.empty())
if(dirname != "/")
{
rv = fs::clonepath(fromsrc_,tosrc_,dirname,return_metadata_errors_);
if(rv == -1)