Merge pull request #299 from trapexit/realpath

use dynamic buffer for realpath
This commit is contained in:
Antonio SJ Musumeci 2016-08-04 17:14:09 -04:00 committed by GitHub
commit f7547d7cf5

View File

@ -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);
}
}