Browse Source

Merge pull request #299 from trapexit/realpath

use dynamic buffer for realpath
pull/301/head
Antonio SJ Musumeci 8 years ago
committed by GitHub
parent
commit
f7547d7cf5
  1. 7
      src/fs.cpp

7
src/fs.cpp

@ -212,15 +212,16 @@ namespace fs
realpathize(vector<string> &strs)
{
char *rv;
char buf[PATH_MAX];
for(size_t i = 0; i < strs.size(); i++)
{
rv = ::realpath(strs[i].c_str(),buf);
rv = ::realpath(strs[i].c_str(),NULL);
if(rv == NULL)
continue;
strs[i] = buf;
strs[i] = rv;
::free(rv);
}
}

Loading…
Cancel
Save